mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-05-13 03:44:37 +01:00
Show system partition key value and add test cases
This commit is contained in:
parent
68c42fb361
commit
003db031ea
@ -27,7 +27,7 @@ for (const { name, databaseId, containerId, documents } of documentTestCases) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
for (const document of documents) {
|
for (const document of documents) {
|
||||||
const { documentId: docId, partitionKeys } = document;
|
const { documentId: docId, partitionKeys, skipCreateDelete } = document;
|
||||||
test.describe(`Document ID: ${docId}`, () => {
|
test.describe(`Document ID: ${docId}`, () => {
|
||||||
test(`should load and view document ${docId}`, async () => {
|
test(`should load and view document ${docId}`, async () => {
|
||||||
const span = documentsTab.documentsListPane.getByText(docId, { exact: true }).nth(0);
|
const span = documentsTab.documentsListPane.getByText(docId, { exact: true }).nth(0);
|
||||||
@ -42,7 +42,9 @@ for (const { name, databaseId, containerId, documents } of documentTestCases) {
|
|||||||
expect(resultText).not.toBeNull();
|
expect(resultText).not.toBeNull();
|
||||||
expect(resultData?.id).toEqual(docId);
|
expect(resultData?.id).toEqual(docId);
|
||||||
});
|
});
|
||||||
test(`should be able to create and delete new document from ${docId}`, async ({ page }) => {
|
|
||||||
|
const testOrSkip = skipCreateDelete ? test.skip : test;
|
||||||
|
testOrSkip(`should be able to create and delete new document from ${docId}`, async ({ page }) => {
|
||||||
const span = documentsTab.documentsListPane.getByText(docId, { exact: true }).nth(0);
|
const span = documentsTab.documentsListPane.getByText(docId, { exact: true }).nth(0);
|
||||||
await span.waitFor();
|
await span.waitFor();
|
||||||
await expect(span).toBeVisible();
|
await expect(span).toBeVisible();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user