test: run tests serially

This commit is contained in:
Pranav C
2024-08-27 07:23:44 +00:00
parent a0758a7ec4
commit 0c3280bdaf
2 changed files with 1 additions and 4 deletions

View File

@@ -55,9 +55,6 @@ const [useProvideAccountSetupStore, useAccountSetupStore] = createInjectionState
loadingAction.value = Action.Save
try {
// todo: validate form fields
// await formRef.value?.validateFields()
await $api.plugin.update(activePlugin.value?.id, {
input: JSON.stringify(activePluginFormData.value),
active: true,

View File

@@ -4,7 +4,7 @@ import setup, { unsetup } from '../../../setup';
import { isEE } from '../../../setup/db';
import { AccountSetupPage } from '../../../pages/Account/Setup';
test.describe('App setup', () => {
test.describe.serial('App setup', () => {
// Org level roles are not available in EE
if (isEE()) {
test.skip();