File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,14 +24,14 @@ describe('getBrowserFingerprint', () => {
2424 assert . ok ( result . fingerprint . length === 8 ) ;
2525 } ) ;
2626
27- it ( 'works with hardwareOnly =true' , async ( ) => {
28- const result = await evaluateFn ( page , { hardwareOnly : true } ) ;
27+ it ( 'works with debug =true' , async ( ) => {
28+ const result = await evaluateFn ( page , { debug : true } ) ;
2929 assert . equal ( typeof result . fingerprint , 'string' ) ;
3030 assert . ok ( result . fingerprint . length === 8 ) ;
3131 } ) ;
3232
33- it ( 'works with enableWebgl=true ' , async ( ) => {
34- const result = await evaluateFn ( page , { enableWebgl : true } ) ;
33+ it ( 'works with debug=false ' , async ( ) => {
34+ const result = await evaluateFn ( page , { debug : false } ) ;
3535 assert . equal ( typeof result . fingerprint , 'string' ) ;
3636 assert . ok ( result . fingerprint . length === 8 ) ;
3737 } ) ;
You can’t perform that action at this time.
0 commit comments