2021-03-09 03:12:25 -08:00
|
|
|
const getTheTitles = require('./getTheTitles')
|
2019-04-11 09:37:33 -07:00
|
|
|
|
2021-03-09 03:12:25 -08:00
|
|
|
describe('getTheTitles', () => {
|
2019-04-11 09:37:33 -07:00
|
|
|
const books = [
|
|
|
|
{
|
|
|
|
title: 'Book',
|
|
|
|
author: 'Name'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Book2',
|
|
|
|
author: 'Name2'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2021-03-09 03:12:25 -08:00
|
|
|
test('gets titles', () => {
|
2021-05-10 02:27:55 -07:00
|
|
|
expect(getTheTitles(books)).toEqual(['Book','Book2']);
|
2019-04-11 09:37:33 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|