hhff/spree-ember

View on GitHub
packages/auth/tests/unit/mixins/user-route-actions-test.js

Summary

Maintainability
A
1 hr
Test Coverage
import Ember from 'ember';
import UserRouteActionsMixin from 'spree-ember-auth/mixins/user-route-actions';
import { module, test } from 'qunit';

module('UserRouteActionsMixin');

// Replace this with your real tests.
test('it works', function(assert) {
  var UserRouteActionsObject = Ember.Object.extend(UserRouteActionsMixin);
  var subject = UserRouteActionsObject.create();
  assert.ok(subject);
});