Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Move test app out of directory for published packages #63

Merged
merged 1 commit into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,4 @@ jobs:

- name: Run Tests
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }} --skip-cleanup
working-directory: packages/ember-test-app
working-directory: apps/ember-test-app
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

## Running the Ember tests

- `cd packages/ember-test-app`
- `cd apps/ember-test-app`
- `pnpm test` – Runs the test suite on the current Ember version
- `pnpm test:watch` – Runs the test suite in "watch mode"

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion config/ember-cli-update.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"--addon-location=packages/ember",
"--ci-provider=github",
"--pnpm",
"--test-app-location=packages/ember-test-app",
"--test-app-location=apps/ember-test-app",
"--test-app-name=ember-test-app",
"--typescript"
]
Expand Down
4 changes: 2 additions & 2 deletions packages/ember/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ By default, all modules will be generated as TypeScript files with a backing cla

## Running tests

- `cd packages/ember-test-app`
- `cd apps/ember-test-app`
- `pnpm test` – Runs the test suite on the current Ember version
- `pnpm test:watch` – Runs the test suite in "watch mode"

Expand All @@ -42,7 +42,7 @@ This project uses [ember-try](https://github.com/ember-cli/ember-try) to test ag

## Running the test application

- `cd packages/ember-test-app`
- `cd apps/ember-test-app`
- `pnpm start`
- Visit the test application at [http://localhost:4200](http://localhost:4200).

Expand Down
Loading