Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
7ab3ca5
Add non-OTP E2E tests
yongdiw Jun 29, 2025
691f7fe
Update readme and cors local proxy
yongdiw Jun 30, 2025
f3f09cd
Update readme
yongdiw Jun 30, 2025
df68348
Update readme
yongdiw Jun 30, 2025
ec8919c
Merge branch 'dev' into yongdi/e2e-test-non-otp
yongdiw Aug 7, 2025
9952463
Update unit tests
yongdiw Aug 7, 2025
fb9649a
Merge branch 'yongdi/e2e-test-non-otp' of https://github.com/AzureAD/…
yongdiw Aug 7, 2025
476470a
Revert testConfig
yongdiw Aug 7, 2025
e1d505b
Rename variables, umd build file
yongdiw Aug 8, 2025
133e442
Change files
yongdiw Aug 8, 2025
e94a00a
Rename incorrect pwd
yongdiw Aug 8, 2025
53e1798
Rename incorrect pwd 2
yongdiw Aug 8, 2025
c3efce6
Invalid Password
yongdiw Aug 8, 2025
4d9938d
Update JIT, MFA test cases
yongdiw Aug 8, 2025
70af04d
Update sign up test cases
yongdiw Aug 10, 2025
9650831
Merge branch 'dev' into yongdi/e2e-test-non-otp
yongdiw Aug 19, 2025
54d0520
Update config parser and tests
yongdiw Aug 22, 2025
4c0c3f0
Merge branch 'dev' into yongdi/e2e-test-non-otp
yongdiw Aug 22, 2025
23358a8
Merge branch 'dev' into yongdi/e2e-test-non-otp
yongdiw Aug 25, 2025
0385773
Fix redirect error message
yongdiw Aug 25, 2025
af5af15
Merge branch 'dev' into yongdi/e2e-test-non-otp
yongdiw Nov 24, 2025
d28e9c4
Update ps script
yongdiw Nov 26, 2025
bcea048
Update email provider, sign up tests and local test script
yongdiw Dec 2, 2025
2df12e7
Update all tests
yongdiw Dec 2, 2025
8a59a62
Update owner file
yongdiw Dec 3, 2025
fcd2417
All other updates
yongdiw Dec 3, 2025
bfd360d
Merge branch 'dev' into yongdi/e2e-test-non-otp
yongdiw Dec 3, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .pipelines/3p-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ extends:
- "onPageLoad"
- "pop"
- "customizable-e2e-test"
- "nativeAuthSample"
- "ExpressSample"
debug: ${{ parameters.debug }}
npmInstallTimeout: ${{ parameters.npmInstallTimeout }}
Expand Down
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# MSAL Browser
/lib/msal-browser/src/custom_auth/ @shenj @yongdiw @nilo-ms @spetrescu84 @mustafamizrak
/lib/msal-browser/test/custom_auth/ @shenj @yongdiw @nilo-ms @spetrescu84 @mustafamizrak
/samples/msal-browser-samples/VanillaJSTestApp2.0/app/nativeAuthSample @shenj @yongdiw @nilo-ms @spetrescu84 @mustafamizrak

# MSAL Node
/lib/msal-node/ @AzureAD/msal-js-public-client @AzureAD/id4s-msal-team
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Add non-OTP E2E tests",
"packageName": "@azure/msal-browser",
"email": "[email protected]",
"dependentChangeType": "patch"
}
31 changes: 31 additions & 0 deletions lib/msal-browser/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,4 +182,35 @@ export default [
}),
],
},
{
// Custom Auth - UMD build
input: "src/custom_auth/index.ts",
output: [
{
dir: "lib/custom-auth-path",
format: "umd",
name: "msalCustomAuth",
banner: fileHeader,
inlineDynamicImports: true,
sourcemap: true,
entryFileNames: "msal-custom-auth.js",
},
],
plugins: [
nodeResolve({
browser: true,
resolveOnly: ["@azure/msal-common", "tslib"],
}),
typescript({
typescript: require("typescript"),
tsconfig: "tsconfig.custom-auth.build.json",
sourceMap: true,
compilerOptions: {
outDir: "lib/custom-auth-path/types",
declaration: false,
declarationMap: false,
},
}),
],
},
];
Loading