Skip to content

Commit

Permalink
Merge pull request #1781 from embroider-build/fix-addondev-test-stable
Browse files Browse the repository at this point in the history
Fix failing addon-dev-js test on stable
  • Loading branch information
mansona authored Feb 1, 2024
2 parents 92e72e4 + 58d49cd commit b4a3057
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/scenarios/v2-addon-dev-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,11 +268,11 @@ import Button from "./demo/button.js";
import Another from "./another.js";
import { precompileTemplate } from '@ember/template-compilation';
import { setComponentTemplate } from '@ember/component';
var _class;
var _SingleFileComponent;
class SingleFileComponent extends Component {
doIt() {}
}
_class = SingleFileComponent;
_SingleFileComponent = SingleFileComponent;
setComponentTemplate(
precompileTemplate(
"<div data-test-single-file-component>Hello {{@message}}</div><div data-test-another><Another /></div><Button data-test-button @onClick={{this.doIt}} />",
Expand All @@ -282,7 +282,7 @@ setComponentTemplate(
Button,
}),
strictMode: true
}), _class);
}), _SingleFileComponent);
export { SingleFileComponent as default };
//# sourceMappingURL=single-file-component.js.map`);
Expand Down

0 comments on commit b4a3057

Please sign in to comment.