File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- module . exports = require ( './lib/PuppeteerEnvironment ' ) . default
2
- module . exports . globalSetup = require ( './lib/global' ) . setup
3
- module . exports . globalTeardown = require ( './lib/global' ) . teardown
1
+ module . exports = require ( './lib/PlaywrightEnvironment ' ) . default ;
2
+ module . exports . globalSetup = require ( './lib/global' ) . setup ;
3
+ module . exports . globalTeardown = require ( './lib/global' ) . teardown ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ const handleError = error => {
7
7
process . emit ( 'uncaughtException' , error )
8
8
} ;
9
9
10
- class PuppeteerEnvironment extends NodeEnvironment {
10
+ class PlaywrightEnvironment extends NodeEnvironment {
11
11
async teardown ( ) {
12
12
console . log ( 'Teardown Test Environment.' ) ;
13
13
await super . teardown ( )
@@ -33,4 +33,4 @@ class PuppeteerEnvironment extends NodeEnvironment {
33
33
}
34
34
}
35
35
36
- export default PuppeteerEnvironment
36
+ export default PlaywrightEnvironment
You can’t perform that action at this time.
0 commit comments