summaryrefslogtreecommitdiffstats
path: root/js/dav/test/integration/version_test.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/dav/test/integration/version_test.js')
-rw-r--r--js/dav/test/integration/version_test.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/js/dav/test/integration/version_test.js b/js/dav/test/integration/version_test.js
new file mode 100644
index 00000000..49cf28f6
--- /dev/null
+++ b/js/dav/test/integration/version_test.js
@@ -0,0 +1,10 @@
+import { expect } from 'chai';
+
+import * as dav from '../../lib';
+import { version } from '../../package';
+
+suite('version', function() {
+ test('should be the same as package.json', function() {
+ expect(dav.version).to.equal(version);
+ });
+});