We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f58a355 commit 05ee3d6Copy full SHA for 05ee3d6
package.json
@@ -108,5 +108,12 @@
108
},
109
"ember-addon": {
110
"configPath": "tests/dummy/config"
111
+ },
112
+ "typesVersions": {
113
+ "*": {
114
+ "*": [
115
+ "types/*"
116
+ ]
117
+ }
118
}
119
types/test-support/load.d.ts
@@ -0,0 +1,5 @@
1
+import type { TestLoader } from 'ember-qunit/test-loader';
2
+
3
+declare class EmberExamTestLoader extends TestLoader {}
4
5
+export default function loadEmberExam(): EmberExamTestLoader;
types/test-support/start.d.ts
+import type { start } from 'ember-qunit';
+type QUnitStartOptions = Parameters<typeof start>[0];
+export default function startEmberExam(options?: QUnitStartOptions): void;
0 commit comments