Major refactoring using ESLint with rules from AirBnb and Vue. Enable most of the ESLint rules and do necessary linting in the code. Also add more information for rules that are disabled to describe what they are and why they are disabled. Allow logging (`console.log`) in test files, and in development mode (e.g. when working with `npm run serve`), but disable it when environment is production (as pre-configured by Vue). Also add flag (`--mode production`) in `lint:eslint` command so production linting is executed earlier in lifecycle. Disable rules that requires a separate work. Such as ESLint rules that are broken in TypeScript: no-useless-constructor (eslint/eslint#14118) and no-shadow (eslint/eslint#13014).
55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
import 'mocha';
|
|
import { expect } from 'chai';
|
|
import { CodePosition } from '@/application/Context/State/Code/Position/CodePosition';
|
|
|
|
describe('CodePosition', () => {
|
|
describe('ctor', () => {
|
|
it('creates with valid parameters', () => {
|
|
// arrange
|
|
const startPosition = 0;
|
|
const endPosition = 5;
|
|
// act
|
|
const sut = new CodePosition(startPosition, endPosition);
|
|
// assert
|
|
expect(sut.startLine).to.equal(startPosition);
|
|
expect(sut.endLine).to.equal(endPosition);
|
|
});
|
|
it('throws with negative start position', () => {
|
|
// arrange
|
|
const startPosition = -1;
|
|
const endPosition = 5;
|
|
// act
|
|
const getSut = () => new CodePosition(startPosition, endPosition);
|
|
// assert
|
|
expect(getSut).to.throw('Code cannot start in a negative line');
|
|
});
|
|
it('throws with negative end position', () => {
|
|
// arrange
|
|
const startPosition = 1;
|
|
const endPosition = -5;
|
|
// act
|
|
const getSut = () => new CodePosition(startPosition, endPosition);
|
|
// assert
|
|
expect(getSut).to.throw('Code cannot end in a negative line');
|
|
});
|
|
it('throws when start and end position is same', () => {
|
|
// arrange
|
|
const startPosition = 0;
|
|
const endPosition = 0;
|
|
// act
|
|
const getSut = () => new CodePosition(startPosition, endPosition);
|
|
// assert
|
|
expect(getSut).to.throw('Empty code');
|
|
});
|
|
it('throws when ends before start', () => {
|
|
// arrange
|
|
const startPosition = 3;
|
|
const endPosition = 2;
|
|
// act
|
|
const getSut = () => new CodePosition(startPosition, endPosition);
|
|
// assert
|
|
expect(getSut).to.throw('End line cannot be less than start line');
|
|
});
|
|
});
|
|
});
|