Revert "Resolve merge conflicts"

This reverts commit 61338e0ca0, reversing
changes made to b9983073cc.
This commit is contained in:
Tatiana
2021-05-08 11:27:13 -07:00
parent 18cffeb940
commit b2f2211321
18 changed files with 91 additions and 11174 deletions
+5 -3
View File
@@ -1,5 +1,7 @@
const helloWorld = require('./helloWorld');
test('says "Hello, World!"', function() {
expect(helloWorld()).toBe("Hello, World!");
});
describe('Hello World', function() {
it('says hello world', function() {
expect(helloWorld()).toEqual('Hello, World!');
});
});