Skip to content

Commit eada383

Browse files
committed
remove vows
1 parent 5aacc72 commit eada383

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
"ts-node": "^3.3.0",
3939
"typescript": "^2.4.2",
4040
"underscore": "^1.8.3",
41-
"vows": ">=0.8.1",
4241
"x2js": "^2.0.1"
4342
},
4443
"repository": {

test/12-node_env-override.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ describe('Tests for NODE_*_ENV load order', function() {
3838
});
3939

4040
it('default \'development\' deployment should be used', function () {
41-
assert.equal(config.util.getEnv('NODE_ENV'), 'development');
42-
assert.equal(config.get('deploymentUsed'), 'default');
41+
assert.strictEqual(config.util.getEnv('NODE_ENV'), 'development');
42+
assert.strictEqual(config.get('deploymentUsed'), 'default');
4343
});
4444
});
4545

@@ -53,8 +53,8 @@ describe('Tests for NODE_*_ENV load order', function() {
5353
});
5454

5555
it('NODE_CONFIG_ENV by itself should be used', function () {
56-
assert.equal(config.util.getEnv('NODE_CONFIG_ENV'), 'apollo');
57-
assert.equal(config.get('deploymentUsed'), 'node-config-env-provided');
56+
assert.strictEqual(config.util.getEnv('NODE_CONFIG_ENV'), 'apollo');
57+
assert.strictEqual(config.get('deploymentUsed'), 'node-config-env-provided');
5858
});
5959

6060
after(function () {
@@ -72,8 +72,8 @@ describe('Tests for NODE_*_ENV load order', function() {
7272
});
7373

7474
it('NODE_ENV by itself should be used', function () {
75-
assert.equal(config.util.getEnv('NODE_CONFIG_ENV'), 'mercury');
76-
assert.equal(config.get('deploymentUsed'), 'node-env-provided');
75+
assert.strictEqual(config.util.getEnv('NODE_CONFIG_ENV'), 'mercury');
76+
assert.strictEqual(config.get('deploymentUsed'), 'node-env-provided');
7777
});
7878

7979
after(function () {
@@ -93,7 +93,7 @@ describe('Tests for NODE_*_ENV load order', function() {
9393
});
9494

9595
it('NODE_CONFIG_ENV value should be used', function () {
96-
assert.equal(config.get('deploymentUsed'), 'node-config-env-provided');
96+
assert.strictEqual(config.get('deploymentUsed'), 'node-config-env-provided');
9797
});
9898

9999
after(function () {

0 commit comments

Comments
 (0)