You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert.ok(output.indexOf('<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js"></script>')>0,"output includes dependency");
194
+
assert.ok(output.indexOf('<style type="text/css">/* styles */')>0,"output includes styles");
195
+
assert.ok(output.indexOf('<script type="text/javascript">/* app */')>0,"output includes the app js");
196
+
assert.ok(output.indexOf('<div id="ember-testing-container">')===-1,"output does not contain testing container");
197
+
});
198
+
199
+
200
+
201
+
test("buildHtml works when testing is enabled",function(assert){
0 commit comments