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

Fix page tests

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-06-24 08:36:29 -04:00
parent dccdcd6b63
commit a8ea8ae78e

View File

@ -43,10 +43,6 @@ describe("Lens cluster pages", () => {
const ready = minikubeReady(TEST_NAMESPACE);
let clusterAdded = false;
afterEach(() => {
clusterAdded = false;
});
utils.describeIf(ready)("test common pages", () => {
const addCluster = async () => {
await waitForMinikubeDashboard(app);
@ -60,7 +56,10 @@ describe("Lens cluster pages", () => {
clusterAdded = true;
};
const tearDown = () => utils.tearDown(app);
const tearDown = async () => {
await utils.tearDown(app);
clusterAdded = false;
};
describe("cluster add", () => {
utils.beforeAllWrapped(async () => {
@ -84,8 +83,8 @@ describe("Lens cluster pages", () => {
}
describe("cluster pages", () => {
utils.beforeEachWrapped(appStartAddCluster);
utils.afterEachWrapped(tearDown);
utils.beforeAllWrapped(appStartAddCluster);
utils.afterAllWrapped(tearDown);
const tests: {
drawer?: string