mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-06 14:40:12 +00:00
15 lines
412 B
JavaScript
15 lines
412 B
JavaScript
import { module, test } from 'qunit';
|
|
|
|
import { setupTest } from '@fleetbase/console/tests/helpers';
|
|
|
|
module('Unit | Model | chat log', function (hooks) {
|
|
setupTest(hooks);
|
|
|
|
// Replace this with your real tests.
|
|
test('it exists', function (assert) {
|
|
let store = this.owner.lookup('service:store');
|
|
let model = store.createRecord('chat-log', {});
|
|
assert.ok(model);
|
|
});
|
|
});
|