Summary: Ref <T2485> Reviewers: #reviewers, Etoo Subscribers: kuba-orlik, jenkins-user Maniphest Tasks: T2485 Differential Revision: https://hub.sealcode.org/D1217
12 lines
318 B
TypeScript
12 lines
318 B
TypeScript
import axios from "axios";
|
|
import { withProdApp } from "../../test_utils/with-prod-app";
|
|
|
|
describe("confirm-password-reset", () => {
|
|
it("displays an html form", async () =>
|
|
withProdApp(async ({ base_url }) => {
|
|
await axios.get(
|
|
`${base_url}/confirm-password-reset?token=kupcia&email=dupcia`
|
|
);
|
|
}));
|
|
});
|