odin-js-fundamentals-part-5/11_getTheTitles/getTheTitles.spec.js

19 lines
334 B
JavaScript
Raw Permalink Normal View History

2024-01-11 08:52:05 +00:00
const getTheTitles = require('./getTheTitles')
describe('getTheTitles', () => {
const books = [
{
title: 'Book',
author: 'Name'
},
{
title: 'Book2',
author: 'Name2'
}
]
test('gets titles', () => {
expect(getTheTitles(books)).toEqual(['Book','Book2']);
});
});