Skip to content

Commit

Permalink
test: remove only
Browse files Browse the repository at this point in the history
  • Loading branch information
porcellus committed Sep 21, 2023
1 parent c149645 commit 2634612
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions test/end-to-end/accountlinking.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ import { TEST_CLIENT_BASE_URL, TEST_SERVER_BASE_URL, SIGN_IN_UP_API, RESET_PASSW
/*
* Tests.
*/
describe.only("SuperTokens Account linking", function () {
describe("SuperTokens Account linking", function () {
let browser;
let page;
let consoleLogs;
Expand Down Expand Up @@ -532,7 +532,7 @@ describe.only("SuperTokens Account linking", function () {
assert.strictEqual(new URL(page.url()).pathname, "/auth/reset-password");
});

it.only("should allow sign in w/ a verified emailpassword user in case of conflict", async function () {
it("should allow sign in w/ a verified emailpassword user in case of conflict", async function () {
const email = `test-user+${Date.now()}@supertokens.com`;
await page.evaluate(() => window.localStorage.setItem("mode", "REQUIRED"));

Expand Down
2 changes: 1 addition & 1 deletion test/end-to-end/multitenancy.dynamic_login_methods.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ let connectionURI;
/*
* Tests.
*/
describe.only("SuperTokens Multitenancy dynamic login methods", function () {
describe("SuperTokens Multitenancy dynamic login methods", function () {
let browser;
let page;
let pageCrashed;
Expand Down
2 changes: 1 addition & 1 deletion test/end-to-end/multitenancy.tenant_interactions.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ import {
/*
* Tests.
*/
describe.only("SuperTokens Multitenancy tenant interactions", function () {
describe("SuperTokens Multitenancy tenant interactions", function () {
let browser;
let page;
let pageCrashed;
Expand Down
2 changes: 1 addition & 1 deletion test/end-to-end/thirdpartypasswordless.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ describe("SuperTokens Third Party Passwordless", function () {
}
});

describe.only("Recipe combination tests", () => {
describe("Recipe combination tests", () => {
before(async function () {
await fetch(`${TEST_SERVER_BASE_URL}/beforeeach`, {
method: "POST",
Expand Down

0 comments on commit 2634612

Please sign in to comment.