##// END OF EJS Templates
sync
sync

File last commit:

r7:d14fb562b896 default
r7:d14fb562b896 default
Show More
dummy.ts
18 lines | 446 B | video/mp2t | TypeScriptLexer
import { test } from "./TestTraits";
import { delay } from "@implab/core-amd/safe";
import { assert } from "chai";
import "@implab/djx";
import css = require("@implab/djx/css!my,css");
test("simple", (ok, fail, log) => {
setTimeout(() => {
// end should be called after the last assertion
ok("async assert");
}, 100);
});
test("simple", async log => {
await delay(0);
assert.ok(true); // everything is fine
});