aboutsummaryrefslogtreecommitdiff
path: root/web/tests/010_sanity.t.js
blob: 9d5636493951b26720475760e5516975280736c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// also supports: startTest(function(t) {
StartTest(function(t) {
    t.diag("Sanity");

    t.ok(Ext, 'ExtJS is here');
    t.ok(Ext.Window, '.. indeed');


    t.ok(Your.Project, 'My project is here');
    t.ok(Your.Project.Util, '.. indeed');

    t.done();   // Optional, marks the correct exit point from the test
})