File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
packages/ember-application/tests/system Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import Application from '../../system/application';
1010import ApplicationInstance from '../../system/application-instance' ;
1111import Engine from '../../system/engine' ;
1212import { Route } from 'ember-routing' ;
13- import { Component , helper } from 'ember-glimmer' ;
13+ import { Component , helper , isSerializationFirstNode } from 'ember-glimmer' ;
1414import { compile } from 'ember-template-compiler' ;
1515import { ENV } from 'ember-environment' ;
1616
@@ -70,9 +70,8 @@ moduleFor('Application - visit()', class extends ApplicationTestCase {
7070
7171 return this . visit ( '/' , bootOptions )
7272 . then ( ( instance ) => {
73- assert . equal (
74- instance . rootElement . firstChild . nodeValue ,
75- '%+b:0%' ,
73+ assert . ok (
74+ isSerializationFirstNode ( instance . rootElement . firstChild ) ,
7675 'glimmer-vm comment node was not found'
7776 ) ;
7877 } ) . then ( ( ) => {
You can’t perform that action at this time.
0 commit comments