@@ -180,7 +180,7 @@ describe.only('GithubPackage', function() {
180
180
181
181
it ( 'uses the project\'s context' , function ( ) {
182
182
assert . isTrue ( context . isPresent ( ) ) ;
183
- assert . equal ( githubPackage . getActiveWorkdir ( ) , workdirPath ) ;
183
+ assert . strictEqual ( githubPackage . getActiveWorkdir ( ) , workdirPath ) ;
184
184
assert . strictEqual ( context . getRepository ( ) , githubPackage . getActiveRepository ( ) ) ;
185
185
assert . strictEqual ( context . getResolutionProgress ( ) , githubPackage . getActiveResolutionProgress ( ) ) ;
186
186
} ) ;
@@ -228,7 +228,7 @@ describe.only('GithubPackage', function() {
228
228
assert . isTrue ( context2 . isPresent ( ) ) ;
229
229
assert . strictEqual ( context2 . getRepository ( ) , githubPackage . getActiveRepository ( ) ) ;
230
230
assert . strictEqual ( context2 . getResolutionProgress ( ) , githubPackage . getActiveResolutionProgress ( ) ) ;
231
- assert . equal ( githubPackage . getActiveWorkdir ( ) , workdirPath2 ) ;
231
+ assert . strictEqual ( githubPackage . getActiveWorkdir ( ) , workdirPath2 ) ;
232
232
} ) ;
233
233
} ) ;
234
234
@@ -252,7 +252,7 @@ describe.only('GithubPackage', function() {
252
252
assert . isTrue ( context . isPresent ( ) ) ;
253
253
assert . strictEqual ( context . getRepository ( ) , githubPackage . getActiveRepository ( ) ) ;
254
254
assert . strictEqual ( context . getResolutionProgress ( ) , githubPackage . getActiveResolutionProgress ( ) ) ;
255
- assert . equal ( githubPackage . getActiveWorkdir ( ) , workdirPath2 ) ;
255
+ assert . strictEqual ( githubPackage . getActiveWorkdir ( ) , workdirPath2 ) ;
256
256
} ) ;
257
257
} ) ;
258
258
@@ -276,7 +276,7 @@ describe.only('GithubPackage', function() {
276
276
assert . isTrue ( context2 . isPresent ( ) ) ;
277
277
assert . strictEqual ( context2 . getRepository ( ) , githubPackage . getActiveRepository ( ) ) ;
278
278
assert . strictEqual ( context2 . getResolutionProgress ( ) , githubPackage . getActiveResolutionProgress ( ) ) ;
279
- assert . equal ( githubPackage . getActiveWorkdir ( ) , workdirPath2 ) ;
279
+ assert . strictEqual ( githubPackage . getActiveWorkdir ( ) , workdirPath2 ) ;
280
280
} ) ;
281
281
} ) ;
282
282
@@ -297,7 +297,7 @@ describe.only('GithubPackage', function() {
297
297
298
298
it ( 'uses the project\'s context' , function ( ) {
299
299
assert . isTrue ( context1 . isPresent ( ) ) ;
300
- assert . equal ( githubPackage . getActiveWorkdir ( ) , workdirPath1 ) ;
300
+ assert . strictEqual ( githubPackage . getActiveWorkdir ( ) , workdirPath1 ) ;
301
301
assert . strictEqual ( context1 . getRepository ( ) , githubPackage . getActiveRepository ( ) ) ;
302
302
assert . strictEqual ( context1 . getResolutionProgress ( ) , githubPackage . getActiveResolutionProgress ( ) ) ;
303
303
} ) ;
@@ -520,7 +520,7 @@ describe.only('GithubPackage', function() {
520
520
} ) ;
521
521
522
522
it ( 'has the correct number of remaining markers' , function ( ) {
523
- assert . equal ( githubPackage . getActiveResolutionProgress ( ) . getRemaining ( 'modified-on-both-ours.txt' ) , remainingMarkerCount ) ;
523
+ assert . strictEqual ( githubPackage . getActiveResolutionProgress ( ) . getRemaining ( 'modified-on-both-ours.txt' ) , remainingMarkerCount ) ;
524
524
} ) ;
525
525
} ) ;
526
526
@@ -574,7 +574,7 @@ describe.only('GithubPackage', function() {
574
574
assert . isTrue ( context2 . isPresent ( ) ) ;
575
575
assert . strictEqual ( context2 . getRepository ( ) , githubPackage . getActiveRepository ( ) ) ;
576
576
assert . strictEqual ( context2 . getResolutionProgress ( ) , githubPackage . getActiveResolutionProgress ( ) ) ;
577
- assert . equal ( githubPackage . getActiveWorkdir ( ) , workdirPath2 ) ;
577
+ assert . strictEqual ( githubPackage . getActiveWorkdir ( ) , workdirPath2 ) ;
578
578
} ) ;
579
579
} ) ;
580
580
@@ -595,7 +595,7 @@ describe.only('GithubPackage', function() {
595
595
596
596
it ( 'uses the project\'s context' , function ( ) {
597
597
assert . isTrue ( context1 . isPresent ( ) ) ;
598
- assert . equal ( githubPackage . getActiveWorkdir ( ) , workdirPath1 ) ;
598
+ assert . strictEqual ( githubPackage . getActiveWorkdir ( ) , workdirPath1 ) ;
599
599
assert . strictEqual ( context1 . getRepository ( ) , githubPackage . getActiveRepository ( ) ) ;
600
600
assert . strictEqual ( context1 . getResolutionProgress ( ) , githubPackage . getActiveResolutionProgress ( ) ) ;
601
601
} ) ;
@@ -616,7 +616,7 @@ describe.only('GithubPackage', function() {
616
616
} ) ;
617
617
618
618
it ( 'uses the state\'s context' , function ( ) {
619
- assert . equal ( githubPackage . getActiveWorkdir ( ) , workdirPath2 ) ;
619
+ assert . strictEqual ( githubPackage . getActiveWorkdir ( ) , workdirPath2 ) ;
620
620
} ) ;
621
621
} ) ;
622
622
@@ -686,7 +686,7 @@ describe.only('GithubPackage', function() {
686
686
assert . isTrue ( context1 . isPresent ( ) ) ;
687
687
assert . strictEqual ( context1 . getRepository ( ) , githubPackage . getActiveRepository ( ) ) ;
688
688
assert . strictEqual ( context1 . getResolutionProgress ( ) , githubPackage . getActiveResolutionProgress ( ) ) ;
689
- assert . equal ( githubPackage . getActiveWorkdir ( ) , workdirPath1 ) ;
689
+ assert . strictEqual ( githubPackage . getActiveWorkdir ( ) , workdirPath1 ) ;
690
690
} ) ;
691
691
} ) ;
692
692
@@ -706,7 +706,7 @@ describe.only('GithubPackage', function() {
706
706
} ) ;
707
707
708
708
it ( 'uses the active context' , function ( ) {
709
- assert . equal ( githubPackage . getActiveWorkdir ( ) , workdirPath1 ) ;
709
+ assert . strictEqual ( githubPackage . getActiveWorkdir ( ) , workdirPath1 ) ;
710
710
} ) ;
711
711
} ) ;
712
712
@@ -721,7 +721,7 @@ describe.only('GithubPackage', function() {
721
721
} ) ;
722
722
723
723
it ( 'uses the repository\'s project context' , function ( ) {
724
- assert . equal ( githubPackage . getActiveWorkdir ( ) , workdirPath ) ;
724
+ assert . strictEqual ( githubPackage . getActiveWorkdir ( ) , workdirPath ) ;
725
725
} ) ;
726
726
} ) ;
727
727
0 commit comments