-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* reorganize source files * rename all jsx files to js * src: prettier * src/lib: prettier * src/client: prettier * src/client - styles: prettier * add prettier config * pkg: update eslint deps and add prettier * update babel; fix some tests * ignore bin and lib dirs * update stylelint * update webpack * update mobx * update deps * change version to alpha * update dev npm script * fix lint issues in src/bin and src/lib * Test fixtures (#119) * Create functions to generate test fixtures * Update types to match updated report data structure * Update components to use results instead of allSuites * Update semver check to include `alpha` and `beta` - Additionally, update stringify fn to not omit null values * test: update sample data * test: add and update fixtures * test: use fixtures and update tests * test: prettier * update eslint config for prettier * fix some lint errors and set others to warnings - someday I will update components for accessibility but today is not that day * update travis config to drop node 4 * add package-lock * remove before install from travis config * update code climate test reporter for travis * A11y (#121) * chore: update webpack-dev-server * wrap test header contents in a button * use <ul> for test list and <li> for test component * use <ul> for suite list and wrap suite in <li> * update hover/focus styles for test button * move error text inside test header button * update default button focus style * update toggles to use checkbox input and fix styles * add focus styles to nav menu links * always show close button in nav menu * pressing escape will close nav menu * update babel/webpack dev deps * update react * update eslint, stylelint, prettier * update test tools * update misc dev deps * update project deps - chalk, yargs, validator * navbar: adjust percent titles to be fixed to 2 decimal places * toggle-switch: update styles to match material-ui * dropdown selector: make more accessible * nav-menu: set tab index for disabled links * fix stylelint * navbar: adjust styles for menu button * update changelog * bump alpha version * tweak code and context colors for readability; update suite title font size * suite: allow suites to be collapsed * options: default charts to false * NavMenu: increase test coverage * bump alpha version
- Loading branch information
1 parent
186a31a
commit 9508ce9
Showing
138 changed files
with
21,097 additions
and
3,851 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
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 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 |
---|---|---|
|
@@ -11,5 +11,5 @@ coverage | |
.nyc_output | ||
test-functional/*.html | ||
dist | ||
bin/*.js | ||
lib/*.js | ||
bin/ | ||
lib/ |
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,6 @@ | ||
{ | ||
"tabWidth": 2, | ||
"trailingComma": "es5", | ||
"singleQuote": true, | ||
"jsxBracketSameLine": true | ||
} |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
node_modules/**/*.css | ||
src/components/summary/*.css | ||
src/client/components/summary/*.css |
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 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 |
---|---|---|
@@ -1,12 +1,13 @@ | ||
env: | ||
global: | ||
- CC_TEST_REPORTER_ID=5a6fbf144bbc7fe5bf3dccf6ddc6ac4eae6a95636073a604c2aa27e535e789a9 | ||
language: node_js | ||
node_js: | ||
- "4" | ||
- "6" | ||
before_install: | ||
- npm install react-test-renderer | ||
addons: | ||
code_climate: | ||
repo_token: 5a6fbf144bbc7fe5bf3dccf6ddc6ac4eae6a95636073a604c2aa27e535e789a9 | ||
- 'node' | ||
- 'lts/*' | ||
before_script: | ||
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter | ||
- chmod +x ./cc-test-reporter | ||
- ./cc-test-reporter before-build | ||
after_script: | ||
- npm install -g codeclimate-test-reporter | ||
- codeclimate-test-reporter < ./coverage/lcov.info | ||
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT |
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 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.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.