1- test ( 'foo test' , async function ( assert ) {
2- assert . expect ( 1 ) ;
1+ import { module , test } from 'qunit' ;
2+ import { click } from '@ember/test-helpers' ;
33
4- sandbox . stub ( Ember , 'onerror ', function ( ) { } ) ;
5- sandbox . stub ( Ember , 'onerror' , ( ) => { } ) ;
6- sandbox . stub ( Ember , 'onerror' , fn ) ;
4+ module ( 'foo ', function ( ) {
5+ test ( 'foo test' , async function ( assert ) {
6+ assert . expect ( 1 ) ;
77
8- sandbox . stub ( Ember , 'foo ' , function ( ) { } ) ;
9- sandbox . stub ( Ember , 'foo ' , ( ) => { } ) ;
10- sandbox . stub ( Ember , 'foo ' , fn ) ;
8+ sandbox . stub ( Ember , 'onerror ' , function ( ) { } ) ;
9+ sandbox . stub ( Ember , 'onerror ' , ( ) => { } ) ;
10+ sandbox . stub ( Ember , 'onerror ' , fn ) ;
1111
12- this . sandbox . stub ( Ember , 'onerror' , function ( ) { } ) ;
13- this . sandbox . stub ( Ember , 'onerror' , ( ) => { } ) ;
14- this . sandbox . stub ( Ember , 'onerror' , fn ) ;
15- } ) ;
12+ sandbox . stub ( Ember , 'foo' , function ( ) { } ) ;
13+ sandbox . stub ( Ember , 'foo' , ( ) => { } ) ;
14+ sandbox . stub ( Ember , 'foo' , fn ) ;
15+
16+ this . sandbox . stub ( Ember , 'onerror' , function ( ) { } ) ;
17+ this . sandbox . stub ( Ember , 'onerror' , ( ) => { } ) ;
18+ this . sandbox . stub ( Ember , 'onerror' , fn ) ;
19+ } ) ;
20+ } ) ;
0 commit comments