diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2014-04-15 01:12:18 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2014-04-15 01:12:18 +0200 |
commit | daa6fc695890085c23851ddb07f313adcd47a50a (patch) | |
tree | 75b7212be3a9c09fd7c5bf7c3b0296ad6d82f5e6 /test_spec.js | |
parent | 610f4c570123510f2d6f4c5799d880d8581126cf (diff) | |
download | vim-polyglot-daa6fc695890085c23851ddb07f313adcd47a50a.tar.gz vim-polyglot-daa6fc695890085c23851ddb07f313adcd47a50a.zip |
Add jasmine support
Diffstat (limited to 'test_spec.js')
-rw-r--r-- | test_spec.js | 5 |
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); + }); +}); |