You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

32 lines
1.2 KiB

import { ANALYTIC_UNIT_COLORS } from '../src/colors';
import { MetricExpanded } from '../src/models/metric';
import { DatasourceRequest } from '../src/models/datasource';
import { analyticController } from './setup_tests';
describe('AnalyticController', function () {
it('should create analytic units with colors from palette', async function () {
for (let color of ANALYTIC_UNIT_COLORS) {
analyticController.createNew();
expect(analyticController.newAnalyticUnit.color).toBe(color);
await analyticController.saveNew({} as MetricExpanded, {} as DatasourceRequest, 1);
}
});
it('should save analytic units', function () {
expect(analyticController.analyticUnits).toHaveLength(ANALYTIC_UNIT_COLORS.length);
});
it('should remove analytic unit with right id', async function () {
await analyticController.removeAnalyticUnit('2');
for (let analyticUnit of analyticController.analyticUnits) {
expect(analyticUnit.id).not.toBe('2');
}
});
it('should change color on choosing from palette', function () {
analyticController.onAnalyticUnitColorChange('1', 'red');
expect(analyticController.analyticUnits[0].color).toBe('red');
});
});