aboutsummaryrefslogtreecommitdiffstats
path: root/test/spec/test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/spec/test.js')
-rw-r--r--test/spec/test.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/spec/test.js b/test/spec/test.js
new file mode 100644
index 000000000..0fca0fb57
--- /dev/null
+++ b/test/spec/test.js
@@ -0,0 +1,11 @@
+(function () {
+ 'use strict';
+
+ describe('Give it some context', function () {
+ describe('maybe a bit more context here', function () {
+ it('should run here few assertions', function () {
+
+ });
+ });
+ });
+})();