Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
:pencil: - chore
:microscope: - experimental

## [Unreleased]
- :rocket: added js maps

## [2.3.1]
- :rocket: added capability to pass `pageObject` property as object
- :beetle: fixed simple equal title
Expand Down
12 changes: 11 additions & 1 deletion test-e2e/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,14 @@ export const electron = {
],
memory: new Memory(),
pageObject: new App()
}
}

export const e2e = {
paths: ['test-e2e/features/*.feature'],
require: [
'index.js',
'test-e2e/step_definitions/*.ts'
],
memory: new Memory(),
pageObject: new App()
}
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"sourceMap": true,
"types": [
"node"
]
Expand Down
Loading