mirror of
https://github.com/azure/login.git
synced 2026-03-12 18:07:08 -04:00
mention allow-no-subscriptions in missing subscriptionId error (#512)
This commit is contained in:
@@ -245,7 +245,7 @@ describe("LoginConfig Test", () => {
|
|||||||
|
|
||||||
let loginConfig = new LoginConfig();
|
let loginConfig = new LoginConfig();
|
||||||
await loginConfig.initialize();
|
await loginConfig.initialize();
|
||||||
testValidateWithErrorMessage(loginConfig, "Ensure subscriptionId is supplied.");
|
testValidateWithErrorMessage(loginConfig, "Ensure 'subscription-id' is supplied or 'allow-no-subscriptions' is 'true'.");
|
||||||
});
|
});
|
||||||
|
|
||||||
test('validate without subscriptionId and allowNoSubscriptionsLogin=true', async () => {
|
test('validate without subscriptionId and allowNoSubscriptionsLogin=true', async () => {
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ export class LoginConfig {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!this.subscriptionId && !this.allowNoSubscriptionsLogin) {
|
if (!this.subscriptionId && !this.allowNoSubscriptionsLogin) {
|
||||||
throw new Error("Ensure subscriptionId is supplied.");
|
throw new Error("Ensure 'subscription-id' is supplied or 'allow-no-subscriptions' is 'true'.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user