From 9ee1d02b6bd042662fe76ce37debe90fd5e8a063 Mon Sep 17 00:00:00 2001 From: patrickpircher Date: Fri, 6 Dec 2024 11:41:15 +0100 Subject: [PATCH] fix test --- test-scenarios/customized-vendor-test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test-scenarios/customized-vendor-test.ts b/test-scenarios/customized-vendor-test.ts index d93ec861..9ecaaf8d 100644 --- a/test-scenarios/customized-vendor-test.ts +++ b/test-scenarios/customized-vendor-test.ts @@ -124,10 +124,10 @@ function customVendorTest(project: Project, vendorPath: string) { } appScenarios - // ember-cli 2.18 has bugs that don't let it actually work with customized - // vendor paths. When we bump the lts scenario to something newer we can - // drop this check. - .skip('lts') + // ember-cli 6 has removed custom `outputPaths` + .skip('canary') + .skip('beta') + .skip('release') .expand({ 'customized-vendor-nested': project => customVendorTest(project, '/js/vendor.js'), 'customized-vendor-top': project => customVendorTest(project, '/top-level-vendor.js'),