mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-08 07:16:49 +00:00
* Added bulk assign driver * Improved performance for order dispatch/ bulk order dispatch/ bulk assign driver * Added new columns to order export * Added downloadable import templates for all importable resources via Import Modal * Patched custom field rendering for order viewing * Patched custom field values reset after order creation * Added notification settings to FleetOps * Added bulk search by ID or Tracking Number for Orders * Patched all filters and filter indicator component * Patched issue unable to select driver after selecting facilitator * Fixed extension booting when not authenticated * Fixed Internal ID rendering on order view * Added ability to filter orders without a driver
13 lines
426 B
JavaScript
13 lines
426 B
JavaScript
import { module, test } from 'qunit';
|
|
import { setupTest } from '@fleetbase/console/tests/helpers';
|
|
|
|
module('Unit | Controller | console/settings/notifications', function (hooks) {
|
|
setupTest(hooks);
|
|
|
|
// TODO: Replace this with your real tests.
|
|
test('it exists', function (assert) {
|
|
let controller = this.owner.lookup('controller:console/settings/notifications');
|
|
assert.ok(controller);
|
|
});
|
|
});
|