mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2024-11-25 15:06:55 +00:00
73b6bdcd3a
* arialabel has been added to close button of invitational youtube video * heading role has been addedd and tag has been changed to h1 * outline has been restored to choose columns link in entities page * Update QuickstartCarousel.tsx * Update SplashScreen.tsx * Update TableEntity.tsx * outline for edit entity has been added on focus * keyboard accessibility added to rows in table entities * learn more link under analytical store * Column header is populated with text * aria label has been changed for the screen readers to read placeholder text along with label text * Update queryBuilder.less * Update TableEntity.tsx * Update ThroughputInputAutoPilotV3Component.tsx * Update ThroughputInputAutoPilotV3Component.tsx * Update ThroughputInputAutoPilotV3Component.test.tsx.snap * Update ThroughputInput.less * Update PanelComponent.less * Update DataTableBindingManager.ts * Update AddCollectionPanel.tsx * Update AddCollectionPanel.test.tsx.snap * spec.ts files updated for the tests * update to container.spec files * Update container.spec.ts * Update container32.spec.ts * Update AddCollectionPanel.tsx * Update AddCollectionPanel.tsx * Update AddCollectionPanel.test.tsx.snap * Update container.spec.ts * Update container.spec.ts * Update container32.spec.ts * Update container.spec.ts * Update container.spec.ts
26 lines
1.1 KiB
TypeScript
26 lines
1.1 KiB
TypeScript
import { jest } from "@jest/globals";
|
|
import "expect-playwright";
|
|
import { generateUniqueName } from "../utils/shared";
|
|
import { waitForExplorer } from "../utils/waitForExplorer";
|
|
|
|
jest.setTimeout(120000);
|
|
|
|
test("Tables CRUD", async () => {
|
|
const tableId = generateUniqueName("table");
|
|
page.setDefaultTimeout(50000);
|
|
|
|
await page.goto("https://localhost:1234/testExplorer.html?accountName=portal-tables-runner");
|
|
const explorer = await waitForExplorer();
|
|
|
|
await page.waitForSelector('text="Querying databases"', { state: "detached" });
|
|
await explorer.click('[data-test="New Table"]');
|
|
await explorer.fill('[aria-label="Table id, Example Table1"]', tableId);
|
|
await explorer.click("#sidePanelOkButton");
|
|
await explorer.click(`[data-test="TablesDB"]`);
|
|
await explorer.click(`[data-test="${tableId}"] [aria-label="More"]`);
|
|
await explorer.click('button[role="menuitem"]:has-text("Delete Table")');
|
|
await explorer.fill('text=* Confirm by typing the table id >> input[type="text"]', tableId);
|
|
await explorer.click('[aria-label="OK"]');
|
|
await expect(explorer).not.toHaveText(".dataResourceTree", tableId);
|
|
});
|