8 lines
134 B
JavaScript
8 lines
134 B
JavaScript
/* globals describe, it, expect */
|
|
|
|
describe('addition ', () => {
|
|
it('should work', () => {
|
|
expect(1 + 1).toEqual(2);
|
|
});
|
|
});
|