This package, `ember-cli-internal-test-helpers`, provides a collection of utility functions designed exclusively for internal testing within the `ember-cli` project itself. It is not intended for use in Ember applications or addons developed by end-users. The current stable version is `0.9.1`. As an internal utility, it does not follow a public release cadence and its API may change without warning, reflecting the needs of the `ember-cli` core development. Its key differentiator is its specialized focus on testing `ember-cli`'s own architecture, such as blueprint generation and command execution, rather than providing helpers for testing Ember application components or routes.
npm install ember-cli-internal-test-helpersVerified import paths — ran on the pinned version, not inferred.
This quickstart demonstrates a conceptual usage of an internal helper like `stub` within a Node.js-based test environment, reflecting how `ember-cli` might test its own functionalities. It is not for general Ember application testing.
Do not install or use `ember-cli-internal-test-helpers` in your application or addon. Use `@ember/test-helpers` or other community-maintained test helper addons instead.
Ensure `ember-cli` is available in your test environment's `node_modules` if you are maintaining or extending `ember-cli`'s internal tests that use this package. For end-users, this change reinforces that the package is not for general consumption.
Do not attempt to `import` these helpers for use in browser-based Ember application tests (e.g., integration or acceptance tests). They are designed for Node.js-specific testing contexts within `ember-cli`.
Verify the exact path and name of the helper in the package's `lib/helpers` directory on GitHub. Ensure you are using CommonJS `require()` syntax for Node.js environments.
Ensure you are correctly destructuring the named export (e.g., `const { stub } = require(...)`) or accessing the property on the imported module (e.g., `const helpers = require(...); helpers.stub(...)`). Check the source code for the correct export structure.No dependency data recorded yet.