Fix/alpha/int tests (#5311)

* chore: converts dynamic imports to esm require

* chore: adjusts require and import usage

* chore: reverts bin script change

* chore: adjust dataloaded tests to use slate editor

* fix: converts custom auth strategy

* chore: fixes to form builder int test config

* chore: adjusts plugin-stripe and int tests

---------

Co-authored-by: Jarrod Flesch <jarrodmflesch@gmail.com>
This commit is contained in:
Dan Ribbens
2024-03-12 16:27:43 -04:00
committed by GitHub
parent 8436dd5851
commit 04fcf57d0a
18 changed files with 202 additions and 253 deletions

View File

@@ -1,3 +1,4 @@
import { slateEditor } from '../../packages/richtext-slate/src/index.js'
import { buildConfigWithDefaults } from '../buildConfigWithDefaults.js'
import { devUser } from '../credentials.js'
@@ -14,19 +15,15 @@ export default buildConfigWithDefaults({
{
name: 'owner',
type: 'relationship',
relationTo: 'users',
hooks: {
beforeChange: [({ req: { user } }) => user?.id],
},
relationTo: 'users',
},
],
},
{
slug: 'relation-a',
labels: {
singular: 'Relation A',
plural: 'Relation As',
},
fields: [
{
name: 'relationship',
@@ -36,15 +33,16 @@ export default buildConfigWithDefaults({
{
name: 'richText',
type: 'richText',
editor: slateEditor({}),
},
],
labels: {
plural: 'Relation As',
singular: 'Relation A',
},
},
{
slug: 'relation-b',
labels: {
singular: 'Relation B',
plural: 'Relation Bs',
},
fields: [
{
name: 'relationship',
@@ -54,8 +52,13 @@ export default buildConfigWithDefaults({
{
name: 'richText',
type: 'richText',
editor: slateEditor({}),
},
],
labels: {
plural: 'Relation Bs',
singular: 'Relation B',
},
},
],
onInit: async (payload) => {
@@ -68,9 +71,9 @@ export default buildConfigWithDefaults({
})
await payload.create({
user,
collection: 'posts',
data: postDoc,
user,
})
},
})