2018-03-02 01:22:08 -05:00
|
|
|
moduleFor("controller:preferences/second-factor");
|
|
|
|
|
2018-06-15 11:03:24 -04:00
|
|
|
QUnit.test("displayOAuthWarning when OAuth login methods are enabled", function(
|
|
|
|
assert
|
|
|
|
) {
|
2018-03-02 01:43:02 -05:00
|
|
|
const controller = this.subject({
|
2018-03-02 01:22:08 -05:00
|
|
|
siteSettings: {
|
|
|
|
enable_google_oauth2_logins: true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-06-15 11:03:24 -04:00
|
|
|
assert.equal(controller.get("displayOAuthWarning"), true);
|
2018-03-02 01:22:08 -05:00
|
|
|
});
|