[#38] Adding several missing tests and correct CI setup

This commit is contained in:
Camille Moussu
2025-07-18 12:55:42 +02:00
parent 7c8b14e961
commit a52ded03fb
19 changed files with 2938 additions and 1278 deletions
+9 -1
View File
@@ -29,9 +29,17 @@ export const api = ky.extend({
state: loginurl.state,
})
);
window.location.assign(loginurl.redirectTo);
redirectTo(loginurl.redirectTo);
}
},
],
},
});
export function redirectTo(url: URL) {
window.location.assign(url);
}
export function getLocation() {
return window.location.href;
}