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
+3 -3
View File
@@ -1,4 +1,4 @@
const getTheTitles = require("./getTheTitles");
let getTheTitles = require("./getTheTitles");
describe("getTheTitles", function () {
const books = [
@@ -12,7 +12,7 @@ describe("getTheTitles", function () {
},
];
test("gets titles", () => {
expect(getTheTitles(books)).toBe(["Book", "Book2"]);
it("gets titles", function () {
expect(getTheTitles(books)).toEqual(["Book", "Book2"]);
});
});