Skip to content

Commit fd67f2d

Browse files
authored
Merge pull request #142 from wvankuipers/feature/1.3.1
Release 1.3.1
2 parents fcc04ef + 67b1711 commit fd67f2d

File tree

5 files changed

+341
-284
lines changed

5 files changed

+341
-284
lines changed

.eslintrc.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ rules:
2323
exports: 'never'
2424
functions: 'ignore'
2525
global-require: 'off'
26+
import/no-extraneous-dependencies: 0
2627
indent:
2728
- 'error'
2829
- 4

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [1.3.1] - 2017-09-18
4+
### Added
5+
- Add missing tests to select.feature (thanks [silkentrance](https://github.com/silkentrance))
6+
7+
### Fixed
8+
- Fixed selectOption action (thanks [silkentrance](https://github.com/silkentrance))
9+
- Updated Jest & ESLint dependencies
10+
- Fixed ESLint ruleing for `import/no-extraneous-dependencies`
11+
- Fixed `babel-jest` not loaded automatically with Jest 21.x.x
12+
313
## [1.3.0] - 2017-09-11
414
### Added
515
- More Node versions to Travis build
@@ -23,7 +33,7 @@
2333
- [Given] `I expect that element "([^"]*)?" is( not)* empty$`
2434

2535
### Changed
26-
- Switched to [Yarn]() for managing our packages
36+
- Switched to [Yarn](https://yarnpkg.com/) for managing our packages
2737
- Readme to reflect Yarn changes
2838
- Updated dependencies
2939
- Removed no longer needed dependencies Cucumber and Babel-jest

jest.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,8 @@
2121
"moduleDirectories": [
2222
"node_modules",
2323
"."
24-
]
24+
],
25+
"transform": {
26+
"^.+\\.js$": "babel-jest"
27+
}
2528
}

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cucumber-boilerplate",
3-
"version": "1.2.0",
3+
"version": "1.3.1",
44
"description": "Boilerplate project to run WebdriverIO tests with Cucumber",
55
"homepage": "https://github.com/webdriverio/cucumber-boilerplate",
66
"scripts": {
@@ -40,6 +40,7 @@
4040
"webdriverio": "4.7.1"
4141
},
4242
"devDependencies": {
43+
"babel-jest": "~21.0.2",
4344
"babel-polyfill": "~6.26.0",
4445
"eslint": "~4.7.0",
4546
"eslint-config-airbnb-base": "~12.0.0",

0 commit comments

Comments
 (0)