We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 039ed70 commit e4bdf4cCopy full SHA for e4bdf4c
src/package_test.ts
@@ -0,0 +1,10 @@
1
+import { expect } from 'chai';
2
+
3
+// Generic set of tests to verify the package is built and configured correctly
4
+describe('package', () => {
5
+ it('package-lock.json should match package.json', () => {
6
+ const v1 = require('../package.json').version;
7
+ const v2 = require('../package-lock.json').version;
8
+ expect(v1).to.equal(v2);
9
+ });
10
+});
0 commit comments