Skip to content

Commit 6481e64

Browse files
authored
Merge pull request #168 from nextcloud-libraries/fix/ssr-option
fix(tests): `ssrBuild` was renamed to `isSsrBuild`
2 parents 808a752 + 752aff3 commit 6481e64

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

__tests__/appconfig.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,5 +104,5 @@ describe('app config', () => {
104104

105105
const createConfig = async (command: 'build' | 'serve' = 'build', mode: 'development' | 'production' = 'production', options?: AppOptions) => await resolveConfig(await createAppConfig({
106106
main: 'src/main.js',
107-
}, options)({ command, mode, ssrBuild: false }), command)
107+
}, options)({ command, mode, isSsrBuild: false }), command)
108108
})

__tests__/libconfig.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,5 @@ describe('library config', () => {
7474

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

0 commit comments

Comments
 (0)