Skip to content

Commit 41804f8

Browse files
committed
fix(demo): don't error on no tests in demos
1 parent bccfc0a commit 41804f8

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

packages/demos/posts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "index.js",
66
"scripts": {
77
"start": "parcel src/index.html --port 4000",
8-
"test": "echo \"Error: no test specified\" && exit 1"
8+
"test": "echo \"Error: no test specified\""
99
},
1010
"keywords": [],
1111
"author": "",

packages/demos/react-todomvc-typescript/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
"license": "MIT",
88
"repository": "git+https://github.com/cerebral/overmind.git",
99
"scripts": {
10-
"start": "webpack-dev-server --port 4000",
11-
"build": "webpack",
10+
"start": "webpack-dev-server --port 4000",
11+
"build": "webpack",
12+
"test": "echo \"Error: no test specified\"",
1213
"typecheck": "tsc --noEmit",
1314
"prepare": "npm run build",
1415
"posttest": "npm run typecheck"

packages/demos/react-todomvc/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"scripts": {
1010
"start": "parcel src/index.html --port 4000",
1111
"build": "parcel build src/index.html ",
12+
"test": "echo \"Error: no test specified\"",
1213
"prepare": "npm run build"
1314
},
1415
"keywords": [

0 commit comments

Comments
 (0)