mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
19 lines
331 B
JavaScript
19 lines
331 B
JavaScript
define([
|
|
'helpers',
|
|
'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'));
|
|
|
|
});
|
|
|
|
});
|
|
|