9 lines
339 B
JavaScript
9 lines
339 B
JavaScript
|
|
||
|
//what component are you testing
|
||
|
//const
|
||
|
//what is the actual output
|
||
|
const actual = 'what is the actual output?';
|
||
|
const expected = 'What is the expected output?';
|
||
|
//what is the expected output
|
||
|
//assert.equal(actual, expected, 'What should the feature do?');
|
||
|
//test('what should the feature do?', () => { expect(actual).toBe(expected);});
|