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

use examples available in default ember addon blueprints #807

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,26 +37,26 @@ This command will run any `ember-cli` command with the specified scenario. The c
For example:

```
ember try:one ember-1.11-with-ember-data-beta-16 --- ember test --reporter xunit
ember try:one ember-beta --- ember test --reporter xunit
```

or

```
ember try:one ember-1.11-with-ember-data-beta-16 --- ember serve
ember try:one ember-beta --- ember serve
```

When running in a CI environment where changes are discarded you can skip resetting your environment back to its original state by specifying --skip-cleanup=true as an option to ember try.
*Warning: If you use this option and, without cleaning up, build and deploy as the result of a passing test suite, it will build with the last set of dependencies ember try was run with.*

```
ember try:one ember-1.11 --skip-cleanup=true --- ember test
ember try:one ember-beta --skip-cleanup=true --- ember test
```

In order to use an alternate config path or to group various scenarios, you can use the `--config-path` option.

```
ember try:one ember-1.13 --config-path="config/legacy-scenarios.js"
ember try:one ember-beta --config-path="config/legacy-scenarios.js"
```

#### `ember try:reset`
Expand Down