6 lines
97 B
JavaScript
6 lines
97 B
JavaScript
import { expect } from 'chai'
|
|
|
|
it('says hello world', function () {
|
|
expect(1 + 5).to.eql(6)
|
|
})
|