Initial builded version

Change-Id: I8937a5b559134d1d6029d16e9831c961287fee0c
This commit is contained in:
Roman Jaroš 2023-09-09 16:55:38 +02:00
commit 13ab39d1fd
57 changed files with 1186 additions and 0 deletions

9
source/app/tests/nightwatchjs.d.ts vendored Normal file
View file

@ -0,0 +1,9 @@
import { Definition } from 'nightwatch';
declare module 'nightwatch' {
interface NightwatchCustomPageObjects {
}
export interface NightwatchCustomCommands {
}
}

View 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",
]
}