diff --git a/server-ce/test/new-editor-create-and-compile-project.spec.ts b/server-ce/test/create-and-compile-project.spec.ts similarity index 98% rename from server-ce/test/new-editor-create-and-compile-project.spec.ts rename to server-ce/test/create-and-compile-project.spec.ts index 6ea586e168..ad2b1ba382 100644 --- a/server-ce/test/new-editor-create-and-compile-project.spec.ts +++ b/server-ce/test/create-and-compile-project.spec.ts @@ -9,7 +9,7 @@ import { prepareWaitForNextCompileSlot } from './helpers/compile' const USER = 'user@example.com' const COLLABORATOR = 'collaborator@example.com' -describe('new editor.Project creation and compilation', function () { +describe('Project creation and compilation', function () { if (isExcludedBySharding('CE_DEFAULT')) return startWith({}) ensureUserExists({ email: USER }) diff --git a/server-ce/test/new-editor-editor.spec.ts b/server-ce/test/editor.spec.ts similarity index 99% rename from server-ce/test/new-editor-editor.spec.ts rename to server-ce/test/editor.spec.ts index 50b3c6c14b..b5954104f9 100644 --- a/server-ce/test/new-editor-editor.spec.ts +++ b/server-ce/test/editor.spec.ts @@ -13,7 +13,7 @@ import { prepareWaitForNextCompileSlot } from './helpers/compile' const USER = 'user@example.com' const COLLABORATOR = 'collaborator@example.com' -describe('new editor.editor', function () { +describe('editor', function () { if (isExcludedBySharding('PRO_DEFAULT_1')) return startWith({ pro: true }) ensureUserExists({ email: USER }) diff --git a/server-ce/test/new-editor-git-bridge.spec.ts b/server-ce/test/git-bridge.spec.ts similarity index 99% rename from server-ce/test/new-editor-git-bridge.spec.ts rename to server-ce/test/git-bridge.spec.ts index aa30a989b0..7c8d8c47a2 100644 --- a/server-ce/test/new-editor-git-bridge.spec.ts +++ b/server-ce/test/git-bridge.spec.ts @@ -17,7 +17,7 @@ import { prepareWaitForNextCompileSlot } from './helpers/compile' const USER = 'user@example.com' -describe('new editor.git-bridge', function () { +describe('git-bridge', function () { const ENABLED_VARS = { GIT_BRIDGE_ENABLED: 'true', GIT_BRIDGE_HOST: 'git-bridge', diff --git a/server-ce/test/new-editor-graceful-shutdown.spec.ts b/server-ce/test/graceful-shutdown.spec.ts similarity index 98% rename from server-ce/test/new-editor-graceful-shutdown.spec.ts rename to server-ce/test/graceful-shutdown.spec.ts index a7c759c5de..11c8d518c1 100644 --- a/server-ce/test/new-editor-graceful-shutdown.spec.ts +++ b/server-ce/test/graceful-shutdown.spec.ts @@ -18,7 +18,7 @@ function bringServerProBackUp() { }) } -describe('new editor.GracefulShutdown', function () { +describe('GracefulShutdown', function () { if (isExcludedBySharding('PRO_CUSTOM_1')) return startWith({ pro: true, diff --git a/server-ce/test/new-editor-history.spec.ts b/server-ce/test/history.spec.ts similarity index 99% rename from server-ce/test/new-editor-history.spec.ts rename to server-ce/test/history.spec.ts index 110cb2370c..3afb975557 100644 --- a/server-ce/test/new-editor-history.spec.ts +++ b/server-ce/test/history.spec.ts @@ -3,7 +3,7 @@ import { prepareWaitForNextCompileSlot } from './helpers/compile' import { ensureUserExists, login } from './helpers/login' import { isExcludedBySharding, startWith } from './helpers/config' -describe('new editor.History', function () { +describe('History', function () { if (isExcludedBySharding('CE_DEFAULT')) return startWith({}) ensureUserExists({ email: 'user@example.com' }) diff --git a/server-ce/test/new-editor-project-sharing.spec.ts b/server-ce/test/project-sharing.spec.ts similarity index 99% rename from server-ce/test/new-editor-project-sharing.spec.ts rename to server-ce/test/project-sharing.spec.ts index 54f76bbb84..a5e201ed05 100644 --- a/server-ce/test/new-editor-project-sharing.spec.ts +++ b/server-ce/test/project-sharing.spec.ts @@ -19,7 +19,7 @@ import { import { prepareWaitForNextCompileSlot } from './helpers/compile' import { beforeWithReRunOnTestRetry } from './helpers/beforeWithReRunOnTestRetry' -describe('new editor.Project Sharing', function () { +describe('Project Sharing', function () { if (isExcludedBySharding('PRO_CUSTOM_4')) return ensureUserExists({ email: 'user@example.com' }) startWith({ withDataDir: true, pro: true }) diff --git a/server-ce/test/new-editor-sandboxed-compiles.spec.ts b/server-ce/test/sandboxed-compiles.spec.ts similarity index 99% rename from server-ce/test/new-editor-sandboxed-compiles.spec.ts rename to server-ce/test/sandboxed-compiles.spec.ts index 4e3ad779fd..2599e848e6 100644 --- a/server-ce/test/new-editor-sandboxed-compiles.spec.ts +++ b/server-ce/test/sandboxed-compiles.spec.ts @@ -7,7 +7,7 @@ import { waitUntilScrollingFinished } from './helpers/waitUntilScrollingFinished const LABEL_TEX_LIVE_VERSION = 'TeX Live version' -describe('new editor.SandboxedCompiles', function () { +describe('SandboxedCompiles', function () { const enabledVars = { SANDBOXED_COMPILES: 'true', ALL_TEX_LIVE_DOCKER_IMAGE_NAMES: '2023,2022', diff --git a/server-ce/test/new-editor-templates.spec.ts b/server-ce/test/templates.spec.ts similarity index 99% rename from server-ce/test/new-editor-templates.spec.ts rename to server-ce/test/templates.spec.ts index ad6c3e6f07..dc7eaa6649 100644 --- a/server-ce/test/new-editor-templates.spec.ts +++ b/server-ce/test/templates.spec.ts @@ -14,7 +14,7 @@ const TEMPLATES_USER = 'templates@example.com' // Re-use value for "exists" and "does not exist" tests const LABEL_BROWSE_TEMPLATES = 'Browse templates' -describe('new editor.Templates', function () { +describe('Templates', function () { ensureUserExists({ email: TEMPLATES_USER }) ensureUserExists({ email: WITHOUT_PROJECTS_USER })