Skip to content

Commit

Permalink
Cleanup comments
Browse files Browse the repository at this point in the history
  • Loading branch information
amitbadala committed Nov 1, 2023
1 parent 9aa6b21 commit e23f1d8
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions test/end-to-end/signup.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -651,27 +651,6 @@ describe("SuperTokens SignUp", function () {
`Expected "${expectedErrorMessage}" to be included in page-error`
);
});

// TODO
// it("Check if default values are getting sent in signup-payload", async function () {
// const updatedFields = {
// country: "USA",
// ratings: "good",
// };

// await setInputValues(page, [{ name: "country", value: updatedFields["country"] }]);
// await setSelectDropdownValue(page, 'select[name="ratings"]', updatedFields["ratings"]);

// // input field default value
// const countryInput = await getInputField(page, "country");
// const updatedCountry = await countryInput.evaluate((f) => f.value);
// assert.strictEqual(updatedCountry, updatedFields["country"]);

// // dropdown default value is also getting set correctly
// const ratingsDropdown = await waitForSTElement(page, "select");
// const updatedRating = await ratingsDropdown.evaluate((f) => f.value);
// assert.strictEqual(updatedRating, updatedFields["ratings"]);
// });
});
});

Expand Down

0 comments on commit e23f1d8

Please sign in to comment.