feat: add database transaction support(#2983)

This commit is contained in:
Dan Ribbens
2023-07-21 14:13:18 -04:00
committed by GitHub
parent c8c22dad06
commit 8a681450d1
495 changed files with 22228 additions and 8512 deletions

View File

@@ -3,7 +3,6 @@ import { expect, test } from '@playwright/test';
import payload from '../../src';
import { AdminUrlUtil } from '../helpers/adminUrlUtil';
import { initPayloadE2E } from '../helpers/configHelpers';
import { login } from '../helpers';
import { restrictedVersionsSlug, readOnlySlug, restrictedSlug, slug, docLevelAccessSlug, unrestrictedSlug } from './config';
import type { ReadOnlyCollection, RestrictedVersion } from './payload-types';
import wait from '../../src/utilities/wait';
@@ -37,8 +36,6 @@ describe('access control', () => {
const context = await browser.newContext();
page = await context.newPage();
await login({ page, serverURL });
});
test('field without read access should not show', async () => {