devtools/test/data/static/js_examples/test_simple_success.js
changeset 11057 0b59724cb3f2
parent 11052 058bb3dc685f
child 11058 23eb30449fe5
--- a/devtools/test/data/static/js_examples/test_simple_success.js	Mon Jan 04 18:40:30 2016 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-$(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);
-  });
-});