Updated file paths

This commit is contained in:
thatblindgeye
2023-02-01 18:53:54 -05:00
parent a092bf0559
commit 2ec0f4344d
24 changed files with 207 additions and 204 deletions
@@ -1,7 +1,7 @@
const helloWorld = require("./helloWorld");
const helloWorld = require('./helloWorld-solution');
describe("Hello World", function () {
describe('Hello World', function () {
test('says "Hello, World!"', function () {
expect(helloWorld()).toEqual("Hello, World!");
expect(helloWorld()).toEqual('Hello, World!');
});
});