all files / tests/dummy/app/ router.js

10% Statements 2/20
100% Branches 0/0
0% Functions 0/1
10% Lines 2/20
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32                                                           
import EmberRouter from '@ember/routing/router';
import config from './config/environment';
 
const Router = EmberRouter.extend({
  location: config.locationType,
  rootURL: config.rootURL
});
 
Router.map(function() {
  this.route('buttons');
  this.route('layouts');
  this.route('installation');
  this.route('layout-container');
  this.route('icons');
  this.route('progress');
  this.route('tags');
  this.route('badge');
  this.route('message');
  this.route('alert');
  this.route('card');
  this.route('message-box');
  this.route('input');
  this.route('radio');
  this.route('divider');
  this.route('switch');
  this.route('rate');
  this.route('checkbox');
});
 
export default Router;