Skip to content

Commit

Permalink
simple test
Browse files Browse the repository at this point in the history
Signed-off-by: Shan He <heshan0131@gmail.com>
  • Loading branch information
heshan0131 committed Aug 31, 2021
1 parent 17774b4 commit d996b90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"test-node": "NODE_ENV=test babel-tape-runner ./test/node.js | tap-spec",
"test-browser-drive": "NODE_ENV=test node ./test/browser-drive.js",
"test-e2e": "NODE_ENV=test HEADLESS=true SLOWMO=true jest",
"test": "npm run lint && npm run test-node && npm run test-browser",
"test": "npm run test-node",
"cover": "nyc --reporter=lcov --reporter html npm test",
"start": "npm run install-and-start -- examples/demo-app start-local",
"start:deck": "npm run install-and-start -- examples/demo-app start-local-deck",
Expand Down
2 changes: 1 addition & 1 deletion test/node/reducers/map-state-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import reducer, {mapStateReducerFactory} from 'reducers/map-state';
import {INITIAL_MAP_STATE} from 'reducers/map-state-updaters';

const InitialMapState = reducer(undefined, {});
test('#mapStateReducer', t => {
test.only('#mapStateReducer', t => {
const newState = reducer(undefined, {});

t.deepEqual(
Expand Down

0 comments on commit d996b90

Please sign in to comment.