Revert "update cloning link"

This reverts commit 4c771f2e05.
This commit is contained in:
Tatiana
2021-05-08 11:25:04 -07:00
parent 60fe6c8b1f
commit 18cffeb940
1791 changed files with 7747 additions and 138307 deletions
+14 -15
View File
@@ -1,19 +1,18 @@
const getTheTitles = require('./getTheTitles')
const getTheTitles = require("./getTheTitles");
describe('getTheTitles', () => {
const books = [
{
title: 'Book',
author: 'Name'
},
{
title: 'Book2',
author: 'Name2'
}
]
describe("getTheTitles", function () {
const books = [
{
title: "Book",
author: "Name",
},
{
title: "Book2",
author: "Name2",
},
];
test('gets titles', () => {
expect(getTheTitles(books)).toBe(['Book','Book2']);
test("gets titles", () => {
expect(getTheTitles(books)).toBe(["Book", "Book2"]);
});
});