Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
89b0c1c
feat: add mochawesome reporter
namsnath Feb 26, 2025
3782b07
update: makes test utils/server use applications
namsnath Feb 26, 2025
71aa78d
feat: setup mochawesome
namsnath Feb 26, 2025
a0e7895
update: `emailverification` tests use core apps
namsnath Feb 26, 2025
f4d51c1
update: `embed` tests use core apps
namsnath Mar 3, 2025
ef2e979
update: `generalerror` tests use core apps
namsnath Mar 3, 2025
ea7bd20
update: `getRedirectionURL` tests use core apps
namsnath Mar 4, 2025
c63fe8a
update: remove assertion on creating new apps
namsnath Mar 4, 2025
5ffc1cb
update: `mfa.chooserscreen` tests use core apps
namsnath Mar 4, 2025
07d24f6
feat: adds mocha envs to test config
namsnath Mar 4, 2025
2f6e6c7
lint: format code
namsnath Mar 4, 2025
2ea50ed
update: `accountlinking` tests use core apps
namsnath Mar 4, 2025
ec57c38
update: `mfa.default_reqs` tests use core apps
namsnath Mar 4, 2025
d239547
refactor: split app creation and ST setup utils
namsnath Mar 7, 2025
29ebc6d
update: `mfa.factorscreen.otp` tests use core apps
namsnath Mar 7, 2025
f45c536
refactor: split app creation and ST setup utils
namsnath Mar 7, 2025
5b7d5f6
update: `mfa.factorscreen.totp` tests use core apps
namsnath Mar 7, 2025
d38f55b
update: add missing backend hooks
namsnath Mar 11, 2025
46cf395
update: `mfa.firstFactors` tests use core apps
namsnath Mar 11, 2025
c1e5e50
update: `mfa.requirement_handling` tests use core apps
namsnath Mar 11, 2025
f11133d
update: `mfa.signin` tests use core apps
namsnath Mar 11, 2025
e377ef9
update: `multitenancy.dynamic_login_methods` tests use core apps
namsnath Mar 11, 2025
94bb686
update: `multitenancy.tenant_interactions` tests use core apps
namsnath Mar 11, 2025
c397afa
update: `oauth2provider` tests use core apps
namsnath Mar 11, 2025
0d64a9a
update: `resetpasswordusingtoken` tests use core apps
namsnath Mar 12, 2025
7eaba07
update: `signin-rrdv5/6` tests use core apps
namsnath Mar 12, 2025
90f2e55
update: few `thirdparty` tests use core apps
namsnath Mar 12, 2025
c9286f0
update: removes `visual` tests
namsnath Mar 12, 2025
2e343f8
removes usages of old helper functions
namsnath Mar 12, 2025
d6e7cbe
update: `userContext`/`userroles` tests use core apps
namsnath Mar 12, 2025
65cb7e3
fix: broken tests, update configs
namsnath Mar 14, 2025
e4625b1
update: remove log
namsnath Mar 14, 2025
744d454
fix: correct setup ST url
namsnath Mar 19, 2025
230b700
test: only run few tests
namsnath Mar 19, 2025
9564c2c
revert: test: only run few tests
namsnath Mar 20, 2025
65f5801
Fix package-lock issues
deepjyoti30-st Mar 25, 2025
407a601
Add some fixes for userContext and test server
deepjyoti30-st Mar 25, 2025
f32c773
update: remove spec config in mocha
namsnath Mar 25, 2025
5836ea3
Port all webauthn tests to use updated test structure
deepjyoti30-st Mar 27, 2025
daaf860
Merge branch 'ci/github-actions/auth-react/v0.48.0' of github.com-sup…
deepjyoti30-st Mar 27, 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
33 changes: 0 additions & 33 deletions .github/workflows/tests-visual.yml

This file was deleted.

15 changes: 10 additions & 5 deletions .mocharc.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
spec:
- test/unit/**/*.test.js
- test/end-to-end/**/*.test.js
reporter: spec
# spec:
# - test/end-to-end/**/*.test.js
slow: 20000
timeout: 30000
timeout: 40000
exit: true
require:
- "@babel/register"
- test/test.mocha.env
reporter: mocha-multi-reporters
reporter-option:
- configFile=mocha-multi-reporters.json
9 changes: 9 additions & 0 deletions mocha-multi-reporters.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"reporterEnabled": "mochawesome, mocha-junit-reporter",
"mochaJunitReporterReporterOptions": {
"mochaFile": "test_report/test-results.xml"
},
"mochawesomeReporterOptions": {
"reportDir": "test_report/mochawesome"
}
}
Loading
Loading