graphql-engine/console/cypress/e2e/settings/metadata/test.ts
Stefano Magni fc753ffb42 console: Update Cypress to v10 and run the migration guide
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4849
GitOrigin-RevId: 10e0fd62344a0c5c7028ad480b747b7f64c9c773
2022-07-05 08:51:35 +00:00

17 lines
385 B
TypeScript

import { testMode } from '../../../helpers/common';
import { inconsistentMetadataPage } from './spec';
export const testInconsistentMetadatapage = () => {
describe('Inconsistent Metadata', () => {
it(
'should render inconsistent metadata table with fake data',
inconsistentMetadataPage
);
});
};
if (testMode !== 'cli') {
testInconsistentMetadatapage();
}