Skip to content

Commit 9438ebc

Browse files
committed
Don't run test:all as the basic test behavior
The `concurrently` invocation was set to run all `ember-try` scenarios *every* time we run `yarn test` either locally or in CI, rather than only when we opt into doing so with `test:all`. Switch back to doing a single `ember test` invocation as the main `test` invocation instead.
1 parent dea3d3a commit 9438ebc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"postpublish": "yarn clean",
3737
"release": "release-it",
3838
"start": "ember serve",
39-
"test": "concurrently \"npm:test:*\" --names \"test:\"",
39+
"test": "ember test",
4040
"test:all": "ember try:each"
4141
},
4242
"peerDependencies": {

0 commit comments

Comments
 (0)