##// END OF EJS Templates
created typings for basic part of dojo and dijit further work is required to...
created typings for basic part of dojo and dijit further work is required to complete typings and separate them from this project dojo-typings replaced with @type/dojo, @type/dijit.

File last commit:

r1:b6ccfccf314f default
r2:8ec37bf1b4d1 default
Show More
dummy.ts
16 lines | 376 B | video/mp2t | TypeScriptLexer
cin
typescript strict mode...
r1 import { test } from "./TestTraits";
import { delay } from "@implab/core-amd/safe";
import { assert } from "chai";
cin
Initial commit, copied files related to .tsx scripts support.
r0
cin
typescript strict mode...
r1 test("simple", (ok, fail, log) => {
cin
Initial commit, copied files related to .tsx scripts support.
r0 setTimeout(() => {
// end should be called after the last assertion
cin
typescript strict mode...
r1 ok("async assert");
cin
Initial commit, copied files related to .tsx scripts support.
r0 }, 100);
});
cin
typescript strict mode...
r1
test("simple", async log => {
await delay(0);
assert.ok(true); // everything is fine
});