diff --git a/.changeset/four-candles-fry.md b/.changeset/four-candles-fry.md new file mode 100644 index 00000000000..e17efacc946 --- /dev/null +++ b/.changeset/four-candles-fry.md @@ -0,0 +1,6 @@ +--- +'@keystonejs/fields-location-google': patch +'@keystonejs/fields-unsplash': patch +--- + +Removed unused `skipRequiredTest` flag from fields API tests. diff --git a/packages/fields-location-google/src/test-fixtures.js b/packages/fields-location-google/src/test-fixtures.js index 5367d48e495..bbc850d5f30 100644 --- a/packages/fields-location-google/src/test-fixtures.js +++ b/packages/fields-location-google/src/test-fixtures.js @@ -6,7 +6,6 @@ import { LocationGoogle } from './'; export const name = 'LocationGoogle'; export const type = LocationGoogle; export const supportsUnique = false; -export const skipRequiredTest = false; export const exampleValue = () => 'ChIJOza7MD-uEmsRrf4t12uji6Y'; export const exampleValue2 = () => 'ChIJ_9gDOjmuEmsRB7WRXm_Y6o8'; export const fieldName = 'venue'; diff --git a/packages/fields-unsplash/src/test-fixtures.js b/packages/fields-unsplash/src/test-fixtures.js index f94c7c9a43a..15ce0e1cfc7 100644 --- a/packages/fields-unsplash/src/test-fixtures.js +++ b/packages/fields-unsplash/src/test-fixtures.js @@ -7,7 +7,6 @@ import { Unsplash } from './'; export const name = 'Unsplash'; export const type = Unsplash; export const supportsUnique = false; -export const skipRequiredTest = false; export const exampleValue = () => 'U0tBTn8UR8I'; export const exampleValue2 = () => 'xrVDYZRGdw4'; export const fieldName = 'heroImage';