aboutsummaryrefslogtreecommitdiff
path: root/web/tests/010_sanity.t.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/tests/010_sanity.t.js')
-rw-r--r--web/tests/010_sanity.t.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/web/tests/010_sanity.t.js b/web/tests/010_sanity.t.js
new file mode 100644
index 000000000..9d5636493
--- /dev/null
+++ b/web/tests/010_sanity.t.js
@@ -0,0 +1,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
+})