discourse/test/javascripts/controllers/preferences-second-factor-t...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
320 B
JavaScript
Raw Normal View History

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