feat: initial test suite framework (#4929)

This commit is contained in:
Jarrod Flesch
2024-02-14 09:46:11 -05:00
committed by GitHub
parent 018755516b
commit 717a6b6d07
50 changed files with 663 additions and 486 deletions

View File

@@ -1,7 +1,7 @@
'use client'
import type { ElementType } from 'react'
import { Tooltip } from 'payload/components'
import { Tooltip } from '@payloadcms/ui'
import React, { useCallback, useState } from 'react'
import { useSlate } from 'slate-react'

View File

@@ -1,5 +1,5 @@
'use client'
import { ShimmerEffect } from 'payload/components'
import { ShimmerEffect } from '@payloadcms/ui'
import React, { Suspense, lazy } from 'react'
import type { FieldProps } from '../types'

View File

@@ -1,6 +1,7 @@
import type { RichTextAdapter } from 'payload/types'
import { withMergedProps, withNullableJSONSchemaType } from 'payload/utilities'
import { withMergedProps } from '@payloadcms/ui/utilities'
import { withNullableJSONSchemaType } from 'payload/utilities'
import type { AdapterArguments } from './types'