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 e5c2416 commit 4febc45Copy full SHA for 4febc45
package.json
@@ -121,5 +121,12 @@
121
},
122
"ember-addon": {
123
"configPath": "tests/dummy/config"
124
+ },
125
+ "typesVersions": {
126
+ "*": {
127
+ "*": [
128
+ "types/*"
129
+ ]
130
+ }
131
}
132
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