11import { StrictResolver } from '@ember/engine/lib/strict-resolver' ;
22
33import * as QUnit from 'qunit' ;
4- const { module , test } = QUnit ;
4+ const { test } = QUnit ;
55
6- module ( 'StrictResolver' , function ( hooks ) {
6+ QUnit . module ( 'StrictResolver' , function ( hooks ) {
77 let resolver ;
88 let modules ;
99
@@ -12,7 +12,7 @@ module('StrictResolver', function (hooks) {
1212 resolver = new StrictResolver ( modules ) ;
1313 } ) ;
1414
15- module ( '#resolve + #addModules' , function ( ) {
15+ QUnit . module ( '#resolve + #addModules' , function ( ) {
1616 test ( 'resolves the standard ember types via default pluralization' , function ( assert ) {
1717 // All of these go through the same `type + 's' -> dir` path. One table-
1818 // driven test keeps the coverage without nine copies of the same setup.
@@ -63,7 +63,7 @@ module('StrictResolver', function (hooks) {
6363 } ) ;
6464 } ) ;
6565
66- module ( '#addModules + normalization' , function ( ) {
66+ QUnit . module ( '#addModules + normalization' , function ( ) {
6767 test ( 'normalization' , function ( assert ) {
6868 assert . strictEqual ( resolver . normalize ( 'controller:posts' ) , 'controller:posts' ) ;
6969 assert . strictEqual ( resolver . normalize ( 'controller:postsIndex' ) , 'controller:posts-index' ) ;
0 commit comments