A cypress plugin for projects using @azure/msal-browser.
npm install @intility/cypress-msal
Register the package in cypress/support/e2e.js
:
import "@intility/cypress-msal/command";
Configure the login command, and add it as a task in cypress.config.js
:
import { defineConfig } from "cypress"
import generateLogin from "@intility/cypress-msal"
let publicClientConfig = {
auth: {
clientId: "APP_CLIENT_ID",
authority: "https://login.microsoftonline.com/TENANT_ID",
},
};
let requests = [
{
scopes: ["User.Read"],
},
];
let login = generateLogin(publicClientConfig, requests);
export default defineConfig({
// ...other cypress settings here...
e2e: {
setupNodeEvents(on, config) {
// `on` is used to hook into various events Cypress emits
on("task", {
// register a task named login which calls the generated login from @intility/cypress-msal
login,
});
}
}
})
You can now login by using the login
command before running your tests.
before(() => cy.login());
The App registration needs to be a Public Application to be able to use the Device Code flow.
let login = generateLogin(publicClientConfiguration, requests);
A Configuration
that will be used to initialize a PublicClientApplication
from @azure/msal-node
.
An array of Requests ({ scopes: string[] }
) that will be used for acquireTokenByDeviceCode
and acquireTokenSilent
.
A task plugin named login
that should be registered with on("task", { login })
.
cy.login()
A Promise that get resolves when all tokens are acquired and registered in sessionStorage
to be used by @azure/msal-browser
.