munchkins/munchkins.github.io

View on GitHub
spec/js/controllers/buildings.spec.js

Summary

Maintainability
A
3 hrs
Test Coverage
describe('Buildings Controller', () => {
  let Ctrl;

  beforeEach(() => {
    module('munchkins');

    inject(($controller) => {
      Ctrl = $controller('Buildings');
    });
  });

  describe('init', () => {
    it('exists', () => {
      expect(Ctrl).to.be.ok;
    });
  });
});