Skip to content
Snippets Groups Projects
Commit df8d51e6 authored by Tom Robinson's avatar Tom Robinson
Browse files

Add MetabaseApi.table_query_metadata snapshot test

parent 73bc209a
No related branches found
No related tags found
No related merge requests found
import { useSharedAdminLogin } from "__support__/integrated_tests";
import { MetabaseApi } from "metabase/services";
describe("MetabaseApi", () => {
beforeAll(() => useSharedAdminLogin());
describe("table_query_metadata", () => {
// these table IDs correspond to the sample dataset in the fixture db
[1, 2, 3, 4].map(tableId =>
it(`should have the correct metadata for table ${tableId}`, async () => {
expect(
stripKeys(await MetabaseApi.table_query_metadata({ tableId })),
).toMatchSnapshot();
}),
);
});
});
function stripKeys(object) {
// handles both arrays and objects
if (object && typeof object === "object") {
for (const key in object) {
if (/^((updated|created)_at|last_analyzed)$/.test(key)) {
delete object[key];
} else {
stripKeys(object[key]);
}
}
}
return object;
}
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment