@@ -78,9 +78,9 @@ function sharedTeardown() {
7878 setTemplates ( { } ) ;
7979}
8080
81- import { test , testModule } from 'ember-glimmer/tests/utils/skip-if-glimmer' ;
81+ import { test } from 'ember-glimmer/tests/utils/skip-if-glimmer' ;
8282
83- testModule ( 'The {{link-to}} helper' , {
83+ QUnit . module ( 'The {{link-to}} helper' , {
8484 setup ( ) {
8585 run ( function ( ) {
8686 sharedSetup ( ) ;
@@ -1502,7 +1502,7 @@ test('{{link-to}} populates href with default query param values even without qu
15021502 equal ( jQuery ( '#the-link' ) . attr ( 'href' ) , '/' , 'link has right href' ) ;
15031503} ) ;
15041504
1505- test ( '{{link-to}} populates href with default query param values with empty query-params object' , function ( ) {
1505+ QUnit . test ( '{{link-to}} populates href with default query param values with empty query-params object' , function ( ) {
15061506 if ( isEnabled ( 'ember-routing-route-configured-query-params' ) ) {
15071507 App . IndexRoute = Route . extend ( {
15081508 queryParams : {
@@ -1523,7 +1523,7 @@ test('{{link-to}} populates href with default query param values with empty quer
15231523 equal ( jQuery ( '#the-link' ) . attr ( 'href' ) , '/' , 'link has right href' ) ;
15241524} ) ;
15251525
1526- test ( '{{link-to}} populates href with supplied query param values' , function ( ) {
1526+ QUnit . test ( '{{link-to}} populates href with supplied query param values' , function ( ) {
15271527 if ( isEnabled ( 'ember-routing-route-configured-query-params' ) ) {
15281528 App . IndexRoute = Route . extend ( {
15291529 queryParams : {
@@ -1544,7 +1544,7 @@ test('{{link-to}} populates href with supplied query param values', function() {
15441544 equal ( jQuery ( '#the-link' ) . attr ( 'href' ) , '/?foo=456' , 'link has right href' ) ;
15451545} ) ;
15461546
1547- test ( '{{link-to}} populates href with partially supplied query param values' , function ( ) {
1547+ QUnit . test ( '{{link-to}} populates href with partially supplied query param values' , function ( ) {
15481548 if ( isEnabled ( 'ember-routing-route-configured-query-params' ) ) {
15491549 App . IndexRoute = Route . extend ( {
15501550 queryParams : {
@@ -1569,7 +1569,7 @@ test('{{link-to}} populates href with partially supplied query param values', fu
15691569 equal ( jQuery ( '#the-link' ) . attr ( 'href' ) , '/?foo=456' , 'link has right href' ) ;
15701570} ) ;
15711571
1572- test ( '{{link-to}} populates href with partially supplied query param values, but omits if value is default value' , function ( ) {
1572+ QUnit . test ( '{{link-to}} populates href with partially supplied query param values, but omits if value is default value' , function ( ) {
15731573 if ( isEnabled ( 'ember-routing-route-configured-query-params' ) ) {
15741574 App . IndexRoute = Route . extend ( {
15751575 queryParams : {
@@ -1590,7 +1590,7 @@ test('{{link-to}} populates href with partially supplied query param values, but
15901590 equal ( jQuery ( '#the-link' ) . attr ( 'href' ) , '/' , 'link has right href' ) ;
15911591} ) ;
15921592
1593- test ( '{{link-to}} populates href with fully supplied query param values' , function ( ) {
1593+ QUnit . test ( '{{link-to}} populates href with fully supplied query param values' , function ( ) {
15941594 if ( isEnabled ( 'ember-routing-route-configured-query-params' ) ) {
15951595 App . IndexRoute = Route . extend ( {
15961596 queryParams : {
@@ -1615,7 +1615,7 @@ test('{{link-to}} populates href with fully supplied query param values', functi
16151615 equal ( jQuery ( '#the-link' ) . attr ( 'href' ) , '/?bar=NAW&foo=456' , 'link has right href' ) ;
16161616} ) ;
16171617
1618- test ( '{{link-to}} with only query-params and a block updates when route changes' , function ( ) {
1618+ QUnit . test ( '{{link-to}} with only query-params and a block updates when route changes' , function ( ) {
16191619 Router . map ( function ( ) {
16201620 this . route ( 'about' ) ;
16211621 } ) ;
@@ -1649,7 +1649,7 @@ test('{{link-to}} with only query-params and a block updates when route changes'
16491649 equal ( jQuery ( '#the-link' ) . attr ( 'href' ) , '/about?bar=NAW&foo=456' , 'link has right href' ) ;
16501650} ) ;
16511651
1652- test ( 'Block-less {{link-to}} with only query-params updates when route changes' , function ( ) {
1652+ QUnit . test ( 'Block-less {{link-to}} with only query-params updates when route changes' , function ( ) {
16531653 Router . map ( function ( ) {
16541654 this . route ( 'about' ) ;
16551655 } ) ;
0 commit comments