Skip to content

Commit

Permalink
Add content-tag to test
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Nov 14, 2024
1 parent 9d8f2d6 commit 24bc4ee
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
10 changes: 7 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions tests/scenarios/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"broccoli-merge-trees": "^3.0.2",
"broccoli-persistent-filter": "^3.1.2",
"broccoli-stew": "^3.0.0",
"content-tag": "^3.0.0",
"ember-bootstrap": "^5.0.0",
"ember-cli": "~3.28.0",
"ember-cli-4.12": "npm:ember-cli@~4.12.0",
Expand Down
8 changes: 7 additions & 1 deletion tests/scenarios/v2-addon-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,17 @@ appScenarios
'import-from-npm.js': `
export default async function() {
let { message } = await import('third-party');
return message()
let { Processor } = await import('content-tag');
console.log(new Processor());
return message();
}
`,
});

addon.linkDependency('content-tag', { baseDir: __dirname });
addon.addDependency('third-party', {
files: {
'index.js': `
Expand Down

0 comments on commit 24bc4ee

Please sign in to comment.