This encompasses a lot of work done over the last year, much of which has already been merged into master. This is the final set of changes required to get Ember CLI running locally for development. From here on it will be bug fixes / enhancements. Co-authored-by: Jarek Radosz <jradosz@gmail.com> Co-authored-by: romanrizzi <rizziromanalejandro@gmail.com> Co-authored-by: Jarek Radosz <jradosz@gmail.com> Co-authored-by: romanrizzi <rizziromanalejandro@gmail.com>
14 lines
498 B
JavaScript
14 lines
498 B
JavaScript
import { discourseModule } from "discourse/tests/helpers/qunit-helpers";
|
|
import { test } from "qunit";
|
|
|
|
discourseModule("Unit | Controller | preferences/second-factor", function () {
|
|
test("displayOAuthWarning when OAuth login methods are enabled", function (assert) {
|
|
const controller = this.getController("preferences/second-factor", {
|
|
siteSettings: {
|
|
enable_google_oauth2_logins: true,
|
|
},
|
|
});
|
|
assert.equal(controller.get("displayOAuthWarning"), true);
|
|
});
|
|
});
|