@@ -7,28 +7,28 @@ import fileB from 'dummy/b';
77import { description as fromAts } from 'in-repo-a/test-support/from-ats' ;
88import { description as fromTs } from 'dummy/tests/from-ts' ;
99
10- module ( 'Unit | Build' , function ( ) {
11- test ( "in-repo addons' addon trees wind up in the right place" , function ( assert ) {
10+ module ( 'Unit | Build' , function ( ) {
11+ test ( "in-repo addons' addon trees wind up in the right place" , function ( assert ) {
1212 assert . equal ( addonFileA , 'in-repo-a/test-file' ) ;
1313 assert . equal ( addonFileB , 'in-repo-b/test-file' ) ;
1414 } ) ;
1515
16- test ( "in-repo addons' app trees wind up in the right place" , function ( assert ) {
16+ test ( "in-repo addons' app trees wind up in the right place" , function ( assert ) {
1717 assert . equal ( fileA , 'dummy/a' ) ;
1818 assert . equal ( fileB , 'dummy/b' ) ;
1919 } ) ;
2020
21- test ( "addon's addon-test-support files end up in <addon-name>/test-support/*" , function ( assert ) {
21+ test ( "addon's addon-test-support files end up in <addon-name>/test-support/*" , function ( assert ) {
2222 assert . ok ( fromAts ) ;
2323 assert . equal ( fromAts , 'From addon-test-support' ) ;
2424 } ) ;
2525
26- test ( "addon's test-support files end up in dummy/tests/*" , function ( assert ) {
26+ test ( "addon's test-support files end up in dummy/tests/*" , function ( assert ) {
2727 assert . ok ( fromTs ) ;
2828 assert . equal ( fromTs , 'From test-support' ) ;
2929 } ) ;
3030
31- test ( 'property initialization occurs in the right order' , function ( assert ) {
31+ test ( 'property initialization occurs in the right order' , function ( assert ) {
3232 class TestClass {
3333 // we shouldn't encourage folks to write code like this, but tsc ensures
3434 // that constructor param fields are set before field initializers run
0 commit comments