Skip to content

feat: unify organization and deployment management settings #13602

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Jul 1, 2024
Prev Previous commit
Next Next commit
🧼
  • Loading branch information
aslilac committed Jul 1, 2024
commit f86b129f34056caafff26a227f1d2c1ad075aba6
15 changes: 6 additions & 9 deletions site/e2e/tests/organizations.spec.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,18 @@
import { test, expect } from "@playwright/test";
import {
createGroup,
createOrganization,
getCurrentOrgId,
setupApiCalls,
} from "../api";
import { setupApiCalls } from "../api";
import { expectUrl } from "../expectUrl";
import { requiresEnterpriseLicense } from "../helpers";
import { beforeCoderTest } from "../hooks";
import { expectUrl } from "../expectUrl";

test.beforeEach(async ({ page }) => await beforeCoderTest(page));
test.beforeEach(async ({ page }) => {
await beforeCoderTest(page);
await setupApiCalls(page);
});

test("create and delete organization", async ({ page, baseURL }) => {
requiresEnterpriseLicense();
await setupApiCalls(page);

// Create an organzation

Check warning on line 15 in site/e2e/tests/organizations.spec.ts

View workflow job for this annotation

GitHub Actions / lint

"organzation" should be "organization".
await page.goto(`${baseURL}/organizations/new`, {
waitUntil: "domcontentloaded",
});
Expand Down
Loading