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,18 +1,18 @@
const getTheTitles = require("./getTheTitles");
const getTheTitles = require('./getTheTitles-solution');
describe("getTheTitles", () => {
describe('getTheTitles', () => {
const books = [
{
title: "Book",
author: "Name",
title: 'Book',
author: 'Name',
},
{
title: "Book2",
author: "Name2",
title: 'Book2',
author: 'Name2',
},
];
test("gets titles", () => {
expect(getTheTitles(books)).toEqual(["Book", "Book2"]);
test('gets titles', () => {
expect(getTheTitles(books)).toEqual(['Book', 'Book2']);
});
});