1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Split workspace tests a bit more

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2020-11-20 09:22:15 +03:00
parent 8461fe425f
commit c072654325

View File

@ -94,17 +94,19 @@ describe("Lens integration tests", () => {
await app.client.waitUntilTextExists(".workspace .name a", "test-workspace");
});
it('switches between workspaces', async () => {
it('adds cluster in default workspace', async () => {
await addMinikubeCluster(app);
await app.client.waitForExist(`iframe[name="minikube"]`);
await app.client.waitForVisible(".ClustersMenu .ClusterIcon.active");
});
// Go to test-workspace
it('adds cluster in test-workspace', async () => {
await app.client.click('#current-workspace .Icon');
await app.client.click('.WorkspaceMenu li[title="test description"]');
await addMinikubeCluster(app);
});
// Back to default one
it('checks if default workspace has active cluster', async () => {
await app.client.click('#current-workspace .Icon');
await app.client.click('.WorkspaceMenu > li:first-of-type');
await app.client.waitForVisible(".ClustersMenu .ClusterIcon.active");