Revert "Merge pull request #1 from xandora/jester-tester"

This reverts commit e901090896, reversing
changes made to 42076e7424.
This commit is contained in:
Tatiana
2021-05-08 11:28:50 -07:00
parent b2f2211321
commit e691edc97c
12 changed files with 63 additions and 62 deletions
+14 -14
View File
@@ -1,18 +1,18 @@
let getTheTitles = require("./getTheTitles");
let getTheTitles = require('./getTheTitles')
describe("getTheTitles", function () {
const books = [
{
title: "Book",
author: "Name",
},
{
title: "Book2",
author: "Name2",
},
];
describe('getTheTitles', function() {
const books = [
{
title: 'Book',
author: 'Name'
},
{
title: 'Book2',
author: 'Name2'
}
]
it("gets titles", function () {
expect(getTheTitles(books)).toEqual(["Book", "Book2"]);
it('gets titles', function() {
expect(getTheTitles(books)).toEqual(['Book','Book2']);
});
});