// yarn add jest
// util.test.js
// util.speck.js
// import generateText component
const { generateText } = require('./util');
test('component should do this and this', () => {
const text = generateText('Papa Dadson', 24);
expect(text).toBe('Papa Dadson is 24 years old');
})
Assignment
Add a basic test with JEST to a VUE/React application you have built