diff --git a/src/Umbraco.Web.UI.Client/e2e/installer.spec.ts b/src/Umbraco.Web.UI.Client/e2e/installer.spec.ts index d5f2457f04..93f78bda78 100644 --- a/src/Umbraco.Web.UI.Client/e2e/installer.spec.ts +++ b/src/Umbraco.Web.UI.Client/e2e/installer.spec.ts @@ -2,7 +2,7 @@ import { rest } from 'msw'; import { expect, test } from '../test'; import { umbracoPath } from '@umbraco-cms/utils'; -import type { ProblemDetails, StatusResponse } from '@umbraco-cms/models'; +import { ProblemDetails, RuntimeLevel, ServerStatus } from '@umbraco-cms/backend-api'; test.describe('installer tests', () => { test.beforeEach(async ({ page, worker }) => { @@ -12,8 +12,8 @@ test.describe('installer tests', () => { return res( // Respond with a 200 status code ctx.status(200), - ctx.json({ - serverStatus: 'must-install', + ctx.json({ + serverStatus: RuntimeLevel.INSTALL, }) ); })