@@ -18,10 +18,10 @@ const RuntimePlugin = [
1818 } ,
1919] ;
2020
21- describe ( 'ColocatedBabelPlugin' , function ( ) {
21+ describe ( 'ColocatedBabelPlugin' , function ( ) {
2222 this . slow ( 500 ) ;
2323
24- it ( 'can be used with decorators' , function ( ) {
24+ it ( 'can be used with decorators' , function ( ) {
2525 let { code } = babel . transformSync (
2626 stripIndent `
2727 import Component from '@glimmer/component';
@@ -68,7 +68,7 @@ describe('ColocatedBabelPlugin', function() {
6868 ) ;
6969 } ) ;
7070
71- it ( 'sets the template for non-class default exports' , function ( ) {
71+ it ( 'sets the template for non-class default exports' , function ( ) {
7272 let { code } = babel . transformSync (
7373 stripIndent `
7474 import MyComponent from 'other-module';
@@ -88,7 +88,7 @@ describe('ColocatedBabelPlugin', function() {
8888 ) ;
8989 } ) ;
9090
91- it ( 'sets the template for named class default exports' , function ( ) {
91+ it ( 'sets the template for named class default exports' , function ( ) {
9292 let { code } = babel . transformSync (
9393 stripIndent `
9494 import Component from 'somewhere';
@@ -110,7 +110,7 @@ describe('ColocatedBabelPlugin', function() {
110110 ) ;
111111 } ) ;
112112
113- it ( 'sets the template for anonymous class default exports' , function ( ) {
113+ it ( 'sets the template for anonymous class default exports' , function ( ) {
114114 let { code } = babel . transformSync (
115115 stripIndent `
116116 import Component from 'somewhere';
@@ -130,7 +130,7 @@ describe('ColocatedBabelPlugin', function() {
130130 ) ;
131131 } ) ;
132132
133- it ( 'sets the template for identifier `as default` exports' , function ( ) {
133+ it ( 'sets the template for identifier `as default` exports' , function ( ) {
134134 let { code } = babel . transformSync (
135135 stripIndent `
136136 import Component from 'somewhere';
0 commit comments