Browse Source

test: run tests serially

pull/9314/head
Pranav C 3 months ago
parent
commit
0c3280bdaf
  1. 3
      packages/nc-gui/composables/useAccountSetupStore.ts
  2. 2
      tests/playwright/tests/db/usersAccounts/accounSetup.spec.ts

3
packages/nc-gui/composables/useAccountSetupStore.ts

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

2
tests/playwright/tests/db/usersAccounts/accounSetup.spec.ts

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

Loading…
Cancel
Save