19 lines
329 B
JavaScript
19 lines
329 B
JavaScript
|
const getTheTitles = require('./getTheTitles-solution');
|
||
|
|
||
|
describe('getTheTitles', () => {
|
||
|
const books = [
|
||
|
{
|
||
|
title: 'Book',
|
||
|
author: 'Name',
|
||
|
},
|
||
|
{
|
||
|
title: 'Book2',
|
||
|
author: 'Name2',
|
||
|
},
|
||
|
];
|
||
|
|
||
|
test('gets titles', () => {
|
||
|
expect(getTheTitles(books)).toEqual(['Book', 'Book2']);
|
||
|
});
|
||
|
});
|