cubicweb/devtools/test/data/static/js_examples/test_simple_success.js
changeset 11057 0b59724cb3f2
parent 10935 049209b9e9d6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cubicweb/devtools/test/data/static/js_examples/test_simple_success.js	Sat Jan 16 13:48:51 2016 +0100
@@ -0,0 +1,17 @@
+$(document).ready(function() {
+
+  QUnit.module("air");
+
+  QUnit.test("test 1", function (assert) {
+      assert.equal(2, 2);
+  });
+
+  QUnit.test("test 2", function (assert) {
+      assert.equal('45', '45');
+  });
+
+  QUnit.module("able");
+  QUnit.test("test 3", function (assert) {
+      assert.deepEqual(1, 1);
+  });
+});