fix(deps): Update dependencies

This commit is contained in:
Joachim Van Herwegen
2022-02-01 15:00:19 +01:00
parent 52f400d344
commit d2870e5c8b
10 changed files with 5171 additions and 6169 deletions

View File

@@ -144,6 +144,10 @@ describe('A Solid server with IDP', (): void => {
});
});
afterAll(async(): Promise<void> => {
await state.session.logout();
});
it('initializes the session and logs in.', async(): Promise<void> => {
const url = await state.startSession();
await state.parseLoginPage(url);
@@ -226,6 +230,10 @@ describe('A Solid server with IDP', (): void => {
state = new IdentityTestState(baseUrl, redirectUrl, oidcIssuer);
});
afterAll(async(): Promise<void> => {
await state.session.logout();
});
it('can not log in with the old password anymore.', async(): Promise<void> => {
const url = await state.startSession();
nextUrl = url;
@@ -293,6 +301,10 @@ describe('A Solid server with IDP', (): void => {
email: newMail, password, confirmPassword: password, podName, createWebId: 'ok', register: 'ok', createPod: 'ok',
});
afterAll(async(): Promise<void> => {
await state.session.logout();
});
it('sends the form to create the WebID and register.', async(): Promise<void> => {
const res = await postForm(`${baseUrl}idp/register/`, formBody);
expect(res.status).toBe(200);