Skip to content

Commit

Permalink
Temporarily disable embroider-optimized tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ynotdraw committed Jul 11, 2023
1 parent abbc22a commit df7a841
Showing 1 changed file with 30 additions and 26 deletions.
56 changes: 30 additions & 26 deletions test-app/config/ember-try.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
'use strict';

const getChannelURL = require('ember-source-channel-url');
const { embroiderOptimized } = require('@embroider/test-setup');
// @todo Temporarily disabling embroider optimized tests due to https://github.com/CrowdStrike/ember-toucan-core/issues/210
// const { embroiderOptimized } = require('@embroider/test-setup');

module.exports = async function () {
let releaseVersion = await getChannelURL('release');
// @todo Temporarily disabling embroider optimized tests due to https://github.com/CrowdStrike/ember-toucan-core/issues/210
// let releaseVersion = await getChannelURL('release');

return {
usePnpm: true,
Expand Down Expand Up @@ -41,30 +43,32 @@ module.exports = async function () {
},
},
},
embroiderOptimized({
name: 'ember-lts-4.8 + embroider-optimized',
npm: {
devDependencies: {
'ember-source': '~4.8.0',
// @todo remove this once we have a stable release that includes https://github.com/embroider-build/embroider/pull/1383, which should be https://github.com/embroider-build/embroider/pull/1408
'@embroider/core': '2.1.2-unstable.c58f146',
'@embroider/compat': '2.1.2-unstable.c58f146',
'@embroider/webpack': '2.1.2-unstable.c58f146',
},
},
}),
embroiderOptimized({
name: 'ember-release + embroider-optimized',
npm: {
devDependencies: {
'ember-source': releaseVersion,
// @todo remove this once we have a stable release that includes https://github.com/embroider-build/embroider/pull/1383, which should be https://github.com/embroider-build/embroider/pull/1408
'@embroider/core': '2.1.2-unstable.c58f146',
'@embroider/compat': '2.1.2-unstable.c58f146',
'@embroider/webpack': '2.1.2-unstable.c58f146',
},
},
}),
// @todo Temporarily disabling embroider optimized tests due to https://github.com/CrowdStrike/ember-toucan-core/issues/210

// embroiderOptimized({
// name: 'ember-lts-4.8 + embroider-optimized',
// npm: {
// devDependencies: {
// 'ember-source': '~4.8.0',
// // @todo remove this once we have a stable release that includes https://github.com/embroider-build/embroider/pull/1383, which should be https://github.com/embroider-build/embroider/pull/1408
// '@embroider/core': '2.1.2-unstable.c58f146',
// '@embroider/compat': '2.1.2-unstable.c58f146',
// '@embroider/webpack': '2.1.2-unstable.c58f146',
// },
// },
// }),
// embroiderOptimized({
// name: 'ember-release + embroider-optimized',
// npm: {
// devDependencies: {
// 'ember-source': releaseVersion,
// // @todo remove this once we have a stable release that includes https://github.com/embroider-build/embroider/pull/1383, which should be https://github.com/embroider-build/embroider/pull/1408
// '@embroider/core': '2.1.2-unstable.c58f146',
// '@embroider/compat': '2.1.2-unstable.c58f146',
// '@embroider/webpack': '2.1.2-unstable.c58f146',
// },
// },
// }),
],
};
};

0 comments on commit df7a841

Please sign in to comment.