Initial builded version
Change-Id: I8937a5b559134d1d6029d16e9831c961287fee0c
This commit is contained in:
commit
13ab39d1fd
57 changed files with 1186 additions and 0 deletions
9
source/app/tests/nightwatchjs.d.ts
vendored
Normal file
9
source/app/tests/nightwatchjs.d.ts
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
import { Definition } from 'nightwatch';
|
||||
|
||||
declare module 'nightwatch' {
|
||||
interface NightwatchCustomPageObjects {
|
||||
}
|
||||
|
||||
export interface NightwatchCustomCommands {
|
||||
}
|
||||
}
|
22
source/app/tests/tsconfig.json
Normal file
22
source/app/tests/tsconfig.json
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"outDir": ".nightwatchjs",
|
||||
"baseUrl": ".",
|
||||
"rootDir": ".",
|
||||
"allowJs": true,
|
||||
"skipLibCheck": true,
|
||||
"module": "commonjs",
|
||||
"strictNullChecks": true,
|
||||
"strictFunctionTypes": false,
|
||||
"target": "es6",
|
||||
"lib": [
|
||||
"es6",
|
||||
],
|
||||
},
|
||||
"files": [
|
||||
"./nightwatchjs.d.ts"
|
||||
],
|
||||
"include": [
|
||||
"./**/*.ts",
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue