Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Skip outputPaths.app.html customizing test." #9706

Open
wants to merge 1 commit into
base: beta
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 3 additions & 6 deletions tests/acceptance/brocfile-smoke-test-slow.js
Expand Up @@ -203,8 +203,7 @@ describe('Acceptance: brocfile-smoke-test', function () {

// custom outputPaths are deprecated under embroider
if (!isExperimentEnabled('EMBROIDER')) {
// skipping this as it seems this functionality doesn't work with ember-auto-import@2.2.3
it.skip('specifying custom output paths works properly', async function () {
it('specifying custom output paths works properly', async function () {
await copyFixtureFiles('brocfile-tests/custom-output-paths');

let themeCSSPath = path.join(appRoot, 'app', 'styles', 'theme.css');
Expand All @@ -230,8 +229,7 @@ describe('Acceptance: brocfile-smoke-test', function () {
});
}

// skipping this as it seems this functionality doesn't work with ember-auto-import@2.2.3
it.skip('specifying outputFile results in an explicitly generated assets', async function () {
it('specifying outputFile results in an explicitly generated assets', async function () {
await copyFixtureFiles('brocfile-tests/app-import-output-file');
await runCommand(path.join('.', 'node_modules', 'ember-cli', 'bin', 'ember'), 'build');

Expand Down Expand Up @@ -431,8 +429,7 @@ describe('Acceptance: brocfile-smoke-test', function () {
expect(file(`dist/assets/${appName}.css`)).to.equal('body { background: green; }\n');
});

// skipping this as it seems this functionality doesn't work with ember-auto-import@2.2.3
it.skip('additional trees can be passed to the app', async function () {
it('additional trees can be passed to the app', async function () {
await copyFixtureFiles('brocfile-tests/additional-trees');
await runCommand(path.join('.', 'node_modules', 'ember-cli', 'bin', 'ember'), 'build', { verbose: true });

Expand Down