Skip to content

Commit 6a3ef75

Browse files
committed
local setup for test components
1 parent 680423e commit 6a3ef75

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ $ cd dash-renderer
1919
$ npm run build # or `renderer build`
2020
# install dash-renderer for development
2121
$ pip install -e .
22+
# build and install components used in tests
23+
$ npm run setup-tests
2224
# you should see both dash and dash-renderer are pointed to local source repos
2325
$ pip list | grep dash
2426
```

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"format": "run-s private::format.*",
1919
"initialize": "run-s private::initialize.*",
2020
"lint": "run-s private::lint.*",
21-
"test.integration": "run-s private::test.setup-* private::test.integration-*",
21+
"setup-tests": "run-s private::test.setup-*",
22+
"test.integration": "run-s setup-tests private::test.integration-*",
2223
"test.unit": "run-s private::test.unit-**"
2324
},
2425
"devDependencies": {

0 commit comments

Comments
 (0)