Skip to content

Commit 4ebb764

Browse files
committed
Update how tests are run, the README
1 parent 86c3cc9 commit 4ebb764

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

files/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Make use of the many generators for code, try `ember help generate` for more det
3333
### Running Tests
3434

3535
- `<%= invokeScriptPrefix %> test`
36-
- `<%= invokeScriptPrefix %> test:ember <% if (npm) { %>-- <% } %>--server`
36+
- `<%= invokeScriptPrefix %> test <% if (npm) { %>-- <% } %>--server`
3737

3838
### Linting
3939

tests/default.test.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ describe('basic functionality', function () {
6868
let result;
6969

7070
try {
71-
result = await project.execa('pnpm', ['test:ember']);
71+
result = await project.execa('pnpm', ['test']);
7272
} catch (err) {
7373
console.log(err.stdout, err.stderr);
74-
throw 'Failed to successfully run test:ember';
74+
throw 'Failed to successfully run test';
7575
}
7676

7777
// make sure that each of the tests that we expect actually show up

0 commit comments

Comments
 (0)