mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-02-24 18:07:06 +00:00
11 lines
342 B
JavaScript
11 lines
342 B
JavaScript
import getTwoFaMethods from '@fleetbase/console/utils/get-two-fa-methods';
|
|
import { module, test } from 'qunit';
|
|
|
|
module('Unit | Utility | get-two-fa-methods', function () {
|
|
// TODO: Replace this with your real tests.
|
|
test('it works', function (assert) {
|
|
let result = getTwoFaMethods();
|
|
assert.ok(result);
|
|
});
|
|
});
|