diff --git a/content/ember/v6/deprecate-import-testing-from-ember.md b/content/ember/v6/deprecate-import-testing-from-ember.md index 0831de34..b1ef9acb 100644 --- a/content/ember/v6/deprecate-import-testing-from-ember.md +++ b/content/ember/v6/deprecate-import-testing-from-ember.md @@ -12,4 +12,10 @@ import Ember from 'ember'; Ember.testing ``` -There is no replacement for this API. +You can replace this with an import from the [`@embroider/macros`](https://github.com/embroider-build/embroider/tree/main/packages/macros) package: + +```js +import { isTesting } from '@embroider/macros'; + +isTesting() +```