Skip to content

Commit

Permalink
fix: test for new encore buildCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien-R44 committed Apr 24, 2023
1 parent 9b5d53c commit d2e2857
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/internal_helpers.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ test.group('Internal helpers | detect package manager', () => {
await fs.create('webpack.config.js', '')
assert.deepEqual(await detectAssetsBundler(app), {
name: 'encore',
buildCommand: 'encore',
buildCommand: 'encore production',
devServerCommand: 'encore dev-server',
})
await fs.remove('webpack.config.js')

await fs.create('webpack.config.cjs', '')
assert.deepEqual(await detectAssetsBundler(app), {
name: 'encore',
buildCommand: 'encore',
buildCommand: 'encore production',
devServerCommand: 'encore dev-server',
})
})
Expand Down

0 comments on commit d2e2857

Please sign in to comment.