6 lines
132 B
TypeScript
6 lines
132 B
TypeScript
describe('example test', () => {
|
|
it('should work', () => {
|
|
expect('<p>Example Text</p>').to.eq('<p>Example Text</p>')
|
|
})
|
|
})
|