MCPcopy
hub / github.com/emberjs/ember.js / Adapter

Interface Adapter

packages/ember-testing/lib/adapters/adapter.ts:14–18  ·  view source on GitHub ↗

The primary purpose of this class is to create hooks that can be implemented by an adapter for various test frameworks. @class TestAdapter @public

Source from the content-addressed store, hash-verified

12 @public
13*/
14interface Adapter extends EmberObject {
15 asyncStart(): void;
16 asyncEnd(): void;
17 exception(error: unknown): never;
18}
19const Adapter = EmberObject.extend({
20 /**
21 This callback will be called whenever an async operation is about to start.

Calls

no outgoing calls

Tested by

no test coverage detected