@@ -25,7 +25,7 @@ suite('Download channel rules - ExtensionInsidersOffChannelRule', () => {
2525
2626 test ( 'Never look for insiders build' , async ( ) => {
2727 const result = await stableChannelRule . shouldLookForInsidersBuild ( ) ;
28- assert . equal ( result , false , 'Not looking for the correct build' ) ;
28+ assert . strictEqual ( result , false , 'Not looking for the correct build' ) ;
2929 } ) ;
3030} ) ;
3131
@@ -49,7 +49,7 @@ suite('Download channel rules - ExtensionInsidersDailyChannelRule', () => {
4949 . verifiable ( TypeMoq . Times . once ( ) ) ;
5050 const result = await insidersDailyChannelRule . shouldLookForInsidersBuild ( true ) ;
5151 lastLookUpTime . verifyAll ( ) ;
52- assert . equal ( result , true , 'Not looking for the correct build' ) ;
52+ assert . strictEqual ( result , true , 'Not looking for the correct build' ) ;
5353 } ) ;
5454 suite ( 'If insiders channel rule is not new' , async ( ) => {
5555 test ( 'Update look up time and return installer for insiders build if looking for insiders the first time' , async ( ) => {
@@ -63,7 +63,7 @@ suite('Download channel rules - ExtensionInsidersDailyChannelRule', () => {
6363 . verifiable ( TypeMoq . Times . atLeastOnce ( ) ) ;
6464 const result = await insidersDailyChannelRule . shouldLookForInsidersBuild ( false ) ;
6565 lastLookUpTime . verifyAll ( ) ;
66- assert . equal ( result , true , 'Not looking for the correct build' ) ;
66+ assert . strictEqual ( result , true , 'Not looking for the correct build' ) ;
6767 } ) ;
6868 test ( 'Update look up time and return installer for insiders build if looking for insiders after 24 hrs of last lookup time' , async ( ) => {
6969 lastLookUpTime
@@ -76,7 +76,7 @@ suite('Download channel rules - ExtensionInsidersDailyChannelRule', () => {
7676 . verifiable ( TypeMoq . Times . atLeastOnce ( ) ) ;
7777 const result = await insidersDailyChannelRule . shouldLookForInsidersBuild ( false ) ;
7878 lastLookUpTime . verifyAll ( ) ;
79- assert . equal ( result , true , 'Not looking for the correct build' ) ;
79+ assert . strictEqual ( result , true , 'Not looking for the correct build' ) ;
8080 } ) ;
8181 test ( 'Do not update look up time or return any installer if looking for insiders within 24 hrs of last lookup time' , async ( ) => {
8282 lastLookUpTime
@@ -89,7 +89,7 @@ suite('Download channel rules - ExtensionInsidersDailyChannelRule', () => {
8989 . verifiable ( TypeMoq . Times . atLeastOnce ( ) ) ;
9090 const result = await insidersDailyChannelRule . shouldLookForInsidersBuild ( false ) ;
9191 lastLookUpTime . verifyAll ( ) ;
92- assert . equal ( result , false , 'Not looking for the correct build' ) ;
92+ assert . strictEqual ( result , false , 'Not looking for the correct build' ) ;
9393 } ) ;
9494 } ) ;
9595} ) ;
@@ -114,7 +114,7 @@ suite('Download channel rules - ExtensionInsidersWeeklyChannelRule', () => {
114114 . verifiable ( TypeMoq . Times . once ( ) ) ;
115115 const result = await insidersWeeklyChannelRule . shouldLookForInsidersBuild ( true ) ;
116116 lastLookUpTime . verifyAll ( ) ;
117- assert . equal ( result , true , 'Not looking for the correct build' ) ;
117+ assert . strictEqual ( result , true , 'Not looking for the correct build' ) ;
118118 } ) ;
119119 suite ( 'If insiders channel rule is not new' , async ( ) => {
120120 test ( 'Update look up time and return installer for insiders build if looking for insiders the first time' , async ( ) => {
@@ -128,7 +128,7 @@ suite('Download channel rules - ExtensionInsidersWeeklyChannelRule', () => {
128128 . verifiable ( TypeMoq . Times . atLeastOnce ( ) ) ;
129129 const result = await insidersWeeklyChannelRule . shouldLookForInsidersBuild ( false ) ;
130130 lastLookUpTime . verifyAll ( ) ;
131- assert . equal ( result , true , 'Not looking for the correct build' ) ;
131+ assert . strictEqual ( result , true , 'Not looking for the correct build' ) ;
132132 } ) ;
133133 test ( 'Update look up time and return installer for insiders build if looking for insiders after a week of last lookup time' , async ( ) => {
134134 lastLookUpTime
@@ -141,7 +141,7 @@ suite('Download channel rules - ExtensionInsidersWeeklyChannelRule', () => {
141141 . verifiable ( TypeMoq . Times . atLeastOnce ( ) ) ;
142142 const result = await insidersWeeklyChannelRule . shouldLookForInsidersBuild ( false ) ;
143143 lastLookUpTime . verifyAll ( ) ;
144- assert . equal ( result , true , 'Not looking for the correct build' ) ;
144+ assert . strictEqual ( result , true , 'Not looking for the correct build' ) ;
145145 } ) ;
146146 test ( 'Do not update look up time or return any installer if looking for insiders within one week of last lookup time' , async ( ) => {
147147 lastLookUpTime
@@ -154,7 +154,7 @@ suite('Download channel rules - ExtensionInsidersWeeklyChannelRule', () => {
154154 . verifiable ( TypeMoq . Times . atLeastOnce ( ) ) ;
155155 const result = await insidersWeeklyChannelRule . shouldLookForInsidersBuild ( false ) ;
156156 lastLookUpTime . verifyAll ( ) ;
157- assert . equal ( result , false , 'Not looking for the correct build' ) ;
157+ assert . strictEqual ( result , false , 'Not looking for the correct build' ) ;
158158 } ) ;
159159 } ) ;
160160} ) ;
0 commit comments