From 752aff32d3a7283ceecac7c20591de7e3c649d43 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Sun, 21 Apr 2024 18:18:46 +0200 Subject: [PATCH] fix(tests): `ssrBuild` was renamed to `isSsrBuild` Signed-off-by: Ferdinand Thiessen --- __tests__/appconfig.spec.ts | 2 +- __tests__/libconfig.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/__tests__/appconfig.spec.ts b/__tests__/appconfig.spec.ts index ad5c4a85..14f40a5d 100644 --- a/__tests__/appconfig.spec.ts +++ b/__tests__/appconfig.spec.ts @@ -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) }) diff --git a/__tests__/libconfig.spec.ts b/__tests__/libconfig.spec.ts index 2ab1c55e..8d5aeb22 100644 --- a/__tests__/libconfig.spec.ts +++ b/__tests__/libconfig.spec.ts @@ -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) })