Commit 67c33084 authored by Clement Ho's avatar Clement Ho

Merge branch 'winh-jest-no-identical-title' into 'master'

Enable ESLint rule jest/no-identical-title

See merge request gitlab-org/gitlab-ce!27139
parents 7e897b00 f23737a4
...@@ -13,5 +13,6 @@ globals: ...@@ -13,5 +13,6 @@ globals:
preloadFixtures: false preloadFixtures: false
setFixtures: false setFixtures: false
rules: rules:
jest/no-identical-title: error
jest/no-focused-tests: error jest/no-focused-tests: error
jest/no-jasmine-globals: error jest/no-jasmine-globals: error
...@@ -9,60 +9,57 @@ describe('Multi-file editor library diff calculator', () => { ...@@ -9,60 +9,57 @@ describe('Multi-file editor library diff calculator', () => {
}); });
describe('modified', () => { describe('modified', () => {
it('', () => { it.each`
const diff = computeDiff('123', '1234')[0]; originalContent | newContent | lineNumber
${'123'} | ${'1234'} | ${1}
expect(diff.added).toBeTruthy(); ${'123\n123\n123'} | ${'123\n1234\n123'} | ${2}
expect(diff.modified).toBeTruthy(); `(
expect(diff.removed).toBeUndefined(); 'marks line $lineNumber as added and modified but not removed',
}); ({ originalContent, newContent, lineNumber }) => {
const diff = computeDiff(originalContent, newContent)[0];
it('', () => {
const diff = computeDiff('123\n123\n123', '123\n1234\n123')[0]; expect(diff.added).toBeTruthy();
expect(diff.modified).toBeTruthy();
expect(diff.added).toBeTruthy(); expect(diff.removed).toBeUndefined();
expect(diff.modified).toBeTruthy(); expect(diff.lineNumber).toBe(lineNumber);
expect(diff.removed).toBeUndefined(); },
expect(diff.lineNumber).toBe(2); );
});
}); });
describe('added', () => { describe('added', () => {
it('', () => { it.each`
const diff = computeDiff('123', '123\n123')[0]; originalContent | newContent | lineNumber
${'123'} | ${'123\n123'} | ${1}
expect(diff.added).toBeTruthy(); ${'123\n123\n123'} | ${'123\n123\n1234\n123'} | ${3}
expect(diff.modified).toBeUndefined(); `(
expect(diff.removed).toBeUndefined(); 'marks line $lineNumber as added but not modified and not removed',
}); ({ originalContent, newContent, lineNumber }) => {
const diff = computeDiff(originalContent, newContent)[0];
it('', () => {
const diff = computeDiff('123\n123\n123', '123\n123\n1234\n123')[0]; expect(diff.added).toBeTruthy();
expect(diff.modified).toBeUndefined();
expect(diff.added).toBeTruthy(); expect(diff.removed).toBeUndefined();
expect(diff.modified).toBeUndefined(); expect(diff.lineNumber).toBe(lineNumber);
expect(diff.removed).toBeUndefined(); },
expect(diff.lineNumber).toBe(3); );
});
}); });
describe('removed', () => { describe('removed', () => {
it('', () => { it.each`
const diff = computeDiff('123', '')[0]; originalContent | newContent | lineNumber | modified
${'123'} | ${''} | ${1} | ${undefined}
expect(diff.added).toBeUndefined(); ${'123\n123\n123'} | ${'123\n123'} | ${2} | ${true}
expect(diff.modified).toBeUndefined(); `(
expect(diff.removed).toBeTruthy(); 'marks line $lineNumber as removed',
}); ({ originalContent, newContent, lineNumber, modified }) => {
const diff = computeDiff(originalContent, newContent)[0];
it('', () => {
const diff = computeDiff('123\n123\n123', '123\n123')[0]; expect(diff.added).toBeUndefined();
expect(diff.modified).toBe(modified);
expect(diff.added).toBeUndefined(); expect(diff.removed).toBeTruthy();
expect(diff.modified).toBeTruthy(); expect(diff.lineNumber).toBe(lineNumber);
expect(diff.removed).toBeTruthy(); },
expect(diff.lineNumber).toBe(2); );
});
}); });
it('includes line number of change', () => { it('includes line number of change', () => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment