You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/ui-v2/tests/unit/mixins/creating-route-test.js

13 lines
429 B

import EmberObject from '@ember/object';
import CreatingRouteMixin from 'consul-ui/mixins/creating-route';
import { module, test } from 'qunit';
module('Unit | Mixin | creating route', function() {
// Replace this with your real tests.
test('it works', function(assert) {
let CreatingRouteObject = EmberObject.extend(CreatingRouteMixin);
let subject = CreatingRouteObject.create();
assert.ok(subject);
});
});