-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
光弘
committed
Jun 8, 2017
1 parent
73d1b6d
commit 828202a
Showing
11 changed files
with
602 additions
and
553 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"extends": "airbnb", | ||
"plugins": [ | ||
"react" | ||
], | ||
"env": { | ||
"browser": true, | ||
"mocha": true | ||
}, | ||
"rules": { | ||
"import/no-extraneous-dependencies": "off", | ||
"react/jsx-no-bind": "off", | ||
"jsx-a11y/label-has-for": "off", | ||
"no-plusplus": [ | ||
"error", | ||
{ | ||
"allowForLoopAfterthoughts": true | ||
} | ||
], | ||
"react/no-unused-prop-types": "off", | ||
"react/forbid-prop-types": "off", | ||
"jsx-a11y/no-static-element-interactions": "off" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,17 @@ language: node_js | |
|
||
sudo: false | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- xvfb | ||
|
||
notification: | ||
email: | ||
- [email protected] | ||
|
||
node_js: | ||
- 4.0.0 | ||
- 6.9.0 | ||
|
||
before_install: | ||
- | | ||
|
@@ -17,6 +22,11 @@ before_install: | |
exit | ||
fi | ||
phantomjs --version | ||
install: | ||
- export DISPLAY=':99.0' | ||
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | ||
- npm install | ||
|
||
|
||
script: | ||
- | | ||
|
@@ -25,7 +35,6 @@ script: | |
else | ||
npm run $TEST_TYPE | ||
fi | ||
env: | ||
matrix: | ||
- TEST_TYPE=test | ||
|
@@ -34,4 +43,4 @@ env: | |
|
||
matrix: | ||
allow_failures: | ||
- env: "TEST_TYPE=saucelabs" | ||
- env: "TEST_TYPE=saucelabs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.