edge/pkg/module/auth/testdata/auth_anonymous.js

9 lines
201 B
JavaScript
Raw Normal View History

2023-02-21 12:14:29 +01:00
function testAuth(ctx) {
var subject = auth.getClaim(ctx, auth.CLAIM_SUBJECT);
2023-02-21 12:14:29 +01:00
if (subject !== undefined) {
throw new Error("subject: expected undefined, got '"+subject+"'");
2023-02-21 12:14:29 +01:00
}
}