@@ -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