Skip to content

Commit

Permalink
Merge pull request #168 from nextcloud-libraries/fix/ssr-option
Browse files Browse the repository at this point in the history
fix(tests): `ssrBuild` was renamed to `isSsrBuild`
  • Loading branch information
susnux committed Apr 21, 2024
2 parents 808a752 + 752aff3 commit 6481e64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __tests__/appconfig.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,5 +104,5 @@ describe('app config', () => {

const createConfig = async (command: 'build' | 'serve' = 'build', mode: 'development' | 'production' = 'production', options?: AppOptions) => await resolveConfig(await createAppConfig({
main: 'src/main.js',
}, options)({ command, mode, ssrBuild: false }), command)
}, options)({ command, mode, isSsrBuild: false }), command)
})
2 changes: 1 addition & 1 deletion __tests__/libconfig.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,5 @@ describe('library config', () => {

const createConfig = async (command: 'build' | 'serve' = 'build', mode: 'development' | 'production' = 'production', options?: LibraryOptions) => await resolveConfig(await createLibConfig({
main: 'src/main.js',
}, options)({ command, mode, ssrBuild: false }), command)
}, options)({ command, mode, isSsrBuild: false }), command)
})

0 comments on commit 6481e64

Please sign in to comment.