cubbot/test/sampleTest.ts

13 lines
242 B
TypeScript
Raw Normal View History

2020-04-16 20:22:57 +00:00
import { add } from './sample'
import { expect } from 'chai'
import { describe, it } from 'mocha'
describe('My sample file', () => {
it('should be able to add things correctly', () => {
expect(add(3, 4)).to.equal(7)
})
})