The primary purpose of this class is to create hooks that can be implemented by an adapter for various test frameworks. @class TestAdapter @public
| 12 | @public |
| 13 | */ |
| 14 | interface Adapter extends EmberObject { |
| 15 | asyncStart(): void; |
| 16 | asyncEnd(): void; |
| 17 | exception(error: unknown): never; |
| 18 | } |
| 19 | const Adapter = EmberObject.extend({ |
| 20 | /** |
| 21 | This callback will be called whenever an async operation is about to start. |
no outgoing calls
no test coverage detected