mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 09:05:45 -06:00
19 lines
337 B
JavaScript
19 lines
337 B
JavaScript
define([
|
|
'./helpers',
|
|
'app/features/dashboard/rowCtrl'
|
|
], function(helpers) {
|
|
'use strict';
|
|
|
|
describe('RowCtrl', function() {
|
|
var ctx = new helpers.ControllerTestContext();
|
|
|
|
beforeEach(module('grafana.controllers'));
|
|
|
|
beforeEach(ctx.providePhase());
|
|
beforeEach(ctx.createControllerPhase('RowCtrl'));
|
|
|
|
});
|
|
|
|
});
|
|
|