row-ctrl-specs.js 337 B

123456789101112131415161718
  1. define([
  2. './helpers',
  3. 'app/features/dashboard/rowCtrl'
  4. ], function(helpers) {
  5. 'use strict';
  6. describe('RowCtrl', function() {
  7. var ctx = new helpers.ControllerTestContext();
  8. beforeEach(module('grafana.controllers'));
  9. beforeEach(ctx.providePhase());
  10. beforeEach(ctx.createControllerPhase('RowCtrl'));
  11. });
  12. });