UNPKG
skutter
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Skutter: Opinionated BDD Browser based test framework
github.com/Ashthos/skutter
Ashthos/skutter
skutter
/
dist
/
lib
/
framework
/
executor
/
iprotractor-config.js
12 lines
(11 loc)
•
273 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
class
ProtractorConfig
{
constructor
(
) {
this
.
specs
=
null
;
this
.
baseUrl
=
null
;
this
.
chromeDriver
=
null
;
this
.
seleniumServerJar
=
null
;
this
.
configPath
=
null
; } }
exports
.
ProtractorConfig
=
ProtractorConfig
;