summaryrefslogtreecommitdiffstats
path: root/test_spec.js
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2014-04-15 01:12:18 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2014-04-15 01:12:18 +0200
commitdaa6fc695890085c23851ddb07f313adcd47a50a (patch)
tree75b7212be3a9c09fd7c5bf7c3b0296ad6d82f5e6 /test_spec.js
parent610f4c570123510f2d6f4c5799d880d8581126cf (diff)
downloadvim-polyglot-daa6fc695890085c23851ddb07f313adcd47a50a.tar.gz
vim-polyglot-daa6fc695890085c23851ddb07f313adcd47a50a.zip
Add jasmine support
Diffstat (limited to 'test_spec.js')
-rw-r--r--test_spec.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/test_spec.js b/test_spec.js
new file mode 100644
index 00000000..b7ac4cf5
--- /dev/null
+++ b/test_spec.js
@@ -0,0 +1,5 @@
+describe("A suite", function() {
+ it("contains spec with an expectation", function() {
+ expect(true).toBe(true);
+ });
+});