test: refactor all test directories into one

This commit is contained in:
Elliot DeNolf
2022-07-15 12:51:43 -07:00
parent 40b6afff2d
commit ba79b4446c
54 changed files with 224 additions and 698 deletions

View File

@@ -0,0 +1,24 @@
import { buildConfig } from '../buildConfig';
export default buildConfig({
collections: [{
slug: 'arrays',
fields: [
{
name: 'array',
type: 'array',
fields: [
{
type: 'text',
name: 'required',
required: true,
},
{
type: 'text',
name: 'optional',
},
],
},
],
}],
});