File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6666 env :
6767 CI : true
6868 NODE_ENV : test
69- DEBUG : true
69+ DEBUG : false
7070 LOCATION : ${{ secrets.LOCATION }}
7171 BROWSERSTACK_USERNAME : ${{ secrets.BROWSERSTACK_USERNAME }}
7272 BROWSERSTACK_ACCESS_KEY : ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ const getDeviceName = ({
170170 // Do not filter browsers when running as CI
171171 const retrievedBrowsers = await getBrowsers ( ) ;
172172 const browsers = CI
173- ? retrievedBrowsers . slice ( 1 , 2 )
173+ ? retrievedBrowsers
174174 : retrievedBrowsers
175175 . sort ( ( ) => Math . random ( ) - 0.5 ) // Shuffle array
176176 . filter ( localBrowserFilter )
@@ -212,7 +212,7 @@ const getDeviceName = ({
212212 expect (
213213 browsers ,
214214 "Should have more than 20 browsers"
215- ) . to . have . lengthOf . at . least ( 1 ) ;
215+ ) . to . have . lengthOf . at . least ( 20 ) ;
216216 }
217217 )
218218 ) ;
You can’t perform that action at this time.
0 commit comments