##// END OF EJS Templates
Added tag v1.0.0-rc18 for changeset 5c6c7e16919c
Added tag v1.0.0-rc18 for changeset 5c6c7e16919c

File last commit:

r28:b88fac0e76c0 v1.0.0-rc13 default
r39:b8741599097e default
Show More
dummy.ts
17 lines | 432 B | video/mp2t | TypeScriptLexer
import { test } from "./TestTraits";
import { delay } from "@implab/core-amd/safe";
import { assert } from "chai";
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, fail) => {
await delay(0);
assert.ok(true); // everything is fine
});