Skip to content

Commit

Permalink
Rename test to testmod so it doesn't initially match instead of using…
Browse files Browse the repository at this point in the history
… testPathIgnorePatterns which then drops any additional positional args to yarn test
  • Loading branch information
cmdcolin committed Sep 22, 2021
1 parent f1f7d8c commit 13f893e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
"check-format": "prettier --check .",
"typecheck": "tsc --noEmit",
"pretest-ci": "cd products/jbrowse-react-linear-genome-view;yarn build;cd ../../",
"test-ci": "jest --ci --coverage",
"test-ci": "jest --ci --coverage && jest --testMatch '**/*testmod.js'",
"built-test-ci": "jest --ci integration.test.js",
"test": "DEBUG_PRINT_LIMIT=0 jest --testPathIgnorePatterns products/jbrowse-img"
"test": "DEBUG_PRINT_LIMIT=0 jest"
},
"husky": {
"hooks": {
Expand Down
14 changes: 5 additions & 9 deletions products/jbrowse-img/DEVELOPER.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,11 @@ To setup jb2export in a developer environment, you can use
```bash
## setup jb2
git clone https://github.com/GMOD/jbrowse-components
cd jbrowse-components
yarn
cd ..

## setup jb2export
git clone git@github.com:GMOD/jb2export
cd jb2export
./setup_node_modules all /path/to/jb2/installation
yarn build
cd products/jbrowse-react-linear-genome-view
cd ../jbrowse-img
yarn snap
```

The setup_node_modules performs builds of the plugins and copies them over
(`yarn link` doesn't work well so they are manually built and copied)
Uses jbrowse-react-linear-genome-view for build
File renamed without changes.
File renamed without changes.

0 comments on commit 13f893e

Please sign in to comment.