mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
fc753ffb42
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4849 GitOrigin-RevId: 10e0fd62344a0c5c7028ad480b747b7f64c9c773
17 lines
385 B
TypeScript
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();
|
|
}
|