Skip to content

chore: clean up groups page #16259

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 13 commits into from
Jan 29, 2025
Prev Previous commit
ohp
  • Loading branch information
aslilac committed Jan 29, 2025
commit 670ef779eb687b787bde2eae5f7c65751e61c7ff
4 changes: 2 additions & 2 deletions site/e2e/tests/organizationGroups.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ import {
createUser,
setupApiCalls,
} from "../api";
import { defaultOrganizationName } from "../constants";
import { expectUrl } from "../expectUrl";
import { login, randomName, requiresLicense } from "../helpers";
import { beforeCoderTest } from "../hooks";
import { defaultOrganizationName } from "../constants";

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

test.only("redirects", async ({ page }) => {
test("redirects", async ({ page }) => {
requiresLicense();

const orgName = defaultOrganizationName;
Expand Down
Loading