forked from MapComplete/MapComplete
15 lines
283 B
TypeScript
15 lines
283 B
TypeScript
|
import {describe} from 'mocha'
|
||
|
import {expect} from 'chai'
|
||
|
|
||
|
describe("TestSuite", () => {
|
||
|
|
||
|
describe("function onder test", () => {
|
||
|
it("should work", () => {
|
||
|
expect("abc").eq("abc")
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
|
||
|
it("global test", () => {
|
||
|
expect("abc").eq("abc")
|
||
|
})
|