Add a stub test

This commit is contained in:
Hongbo Wu
2022-11-21 22:20:23 +08:00
parent 2ab7e0a599
commit 64d6ff45e1

View File

@ -0,0 +1,8 @@
import 'mocha'
import { expect } from 'chai'
describe('stub test', () => {
it('should pass', () => {
expect(true).to.be.true
})
})