15 lines
No EOL
283 B
TypeScript
15 lines
No EOL
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")
|
|
}) |