File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
addon-test-support/ember-qunit Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ export { loadTests } from './test-loader';
7
7
8
8
import { run } from '@ember/runloop' ;
9
9
import { assign } from '@ember/polyfills' ;
10
- import { resetOnerror } from '@ember/test-helpers' ;
10
+ import { resetOnerror , getTestMetadata } from '@ember/test-helpers' ;
11
11
import { loadTests } from './test-loader' ;
12
12
import Ember from 'ember' ;
13
13
import QUnit from 'qunit' ;
@@ -29,6 +29,9 @@ export function setupTest(hooks, _options) {
29
29
let options = _options === undefined ? { waitForSettled } : assign ( { waitForSettled } , _options ) ;
30
30
31
31
hooks . beforeEach ( function ( assert ) {
32
+ let testMetadata = getTestMetadata ( this ) ;
33
+ testMetadata . framework = 'qunit' ;
34
+
32
35
return setupContext ( this , options ) . then ( ( ) => {
33
36
let originalPauseTest = this . pauseTest ;
34
37
this . pauseTest = function QUnit_pauseTest ( ) {
You can’t perform that action at this time.
0 commit comments