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.
17 lines
675 B
17 lines
675 B
import { constantBuilder, customBuilder } from '../shared/testing/builders';
|
|
import { getNextAvailableId } from './actions';
|
|
|
|
describe('getNextAvailableId', () => {
|
|
describe('when called with a custom type and there is already 2 variables', () => {
|
|
it('then the correct id should be created', () => {
|
|
const custom1 = customBuilder().withId('custom0').withName('custom0').build();
|
|
const constant1 = constantBuilder().withId('custom1').withName('custom1').build();
|
|
const variables = [custom1, constant1];
|
|
const type = 'custom';
|
|
|
|
const result = getNextAvailableId(type, variables);
|
|
|
|
expect(result).toEqual('custom2');
|
|
});
|
|
});
|
|
});
|
|
|