UNPKG
create-codeceptjs-bdd-tests
Version:
latest (8.2.0)
8.2.0
8.1.8
8.1.7
8.1.6
8.1.5
8.1.4
8.1.3
8.1.1
8.1.0
8.0.5
8.0.3
8.0.2
8.0.1
8.0.0
7.0.27
7.0.26
7.0.25
7.0.24
7.0.23
7.0.21
7.0.20
7.0.19
7.0.18
7.0.17
7.0.16
7.0.15
7.0.13
7.0.12
7.0.11
7.0.10
7.0.9
7.0.8
7.0.7
7.0.6
7.0.5
7.0.4
7.0.3
7.0.2
7.0.1
7.0.0
6.1.16
6.1.15
6.1.14
6.1.13
6.1.11
6.1.9
6.1.8
6.1.7
6.1.6
6.1.5
6.1.4
6.1.3
6.1.2
6.1.1
6.1.0
6.0.13
6.0.12
6.0.11
6.0.10
6.0.9
6.0.8
6.0.7
6.0.6
6.0.5
6.0.4
6.0.3
6.0.2
6.0.1
5.2.3
5.2.2
5.2.1
5.2.0
5.1.7
5.1.5
5.1.4
5.1.1
5.1.0
5.0.21
5.0.18
5.0.17
5.0.16
5.0.15
5.0.14
5.0.13
5.0.12
5.0.11
5.0.10
5.0.9
5.0.8
5.0.7
5.0.6
5.0.5
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
Create Codeceptjs BDD Tests
gkushang.github.io
gkushang/codeceptjs-bdd
create-codeceptjs-bdd-tests
/
acceptance
/
helpers
/
driver.helper.ts
10 lines
(7 loc)
•
206 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
const
Helper
=
require
(
'@codeceptjs/helper'
);
class
driver_helper
extends
Helper
{
checkIfRunningOnPlaywright
(
) {
return
this
.
helpers
.
Playwright
!==
undefined
; } }
export
= driver_helper;