summaryrefslogtreecommitdiff
path: root/spec/frontend/code_navigation/store/actions_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/code_navigation/store/actions_spec.js')
-rw-r--r--spec/frontend/code_navigation/store/actions_spec.js24
1 files changed, 18 insertions, 6 deletions
diff --git a/spec/frontend/code_navigation/store/actions_spec.js b/spec/frontend/code_navigation/store/actions_spec.js
index 4cf77ed1be5..fbd93b10a14 100644
--- a/spec/frontend/code_navigation/store/actions_spec.js
+++ b/spec/frontend/code_navigation/store/actions_spec.js
@@ -69,7 +69,12 @@ describe('Code navigation actions', () => {
payload: {
path: 'index.js',
normalizedData: {
- '0:0': { start_line: 0, start_char: 0, hover: { value: '123' } },
+ '0:0': {
+ definitionLineNumber: 0,
+ start_line: 0,
+ start_char: 0,
+ hover: { value: '123' },
+ },
},
},
},
@@ -91,7 +96,12 @@ describe('Code navigation actions', () => {
payload: {
path: 'index.js',
normalizedData: {
- '0:0': { start_line: 0, start_char: 0, hover: { value: '123' } },
+ '0:0': {
+ definitionLineNumber: 0,
+ start_line: 0,
+ start_char: 0,
+ hover: { value: '123' },
+ },
},
},
},
@@ -159,7 +169,9 @@ describe('Code navigation actions', () => {
let target;
beforeEach(() => {
- setFixtures('<div data-path="index.js"><div class="js-test"></div></div>');
+ setFixtures(
+ '<div data-path="index.js"><div class="line"><div class="js-test"></div></div></div>',
+ );
target = document.querySelector('.js-test');
});
@@ -186,7 +198,7 @@ describe('Code navigation actions', () => {
payload: {
blobPath: 'index.js',
definition: { hover: 'test' },
- position: { height: 0, x: 0, y: 0 },
+ position: { height: 0, x: 0, y: 0, lineIndex: 0 },
},
},
],
@@ -210,7 +222,7 @@ describe('Code navigation actions', () => {
payload: {
blobPath: 'index.js',
definition: { hover: 'test' },
- position: { height: 0, x: 0, y: 0 },
+ position: { height: 0, x: 0, y: 0, lineIndex: 0 },
},
},
],
@@ -235,7 +247,7 @@ describe('Code navigation actions', () => {
payload: {
blobPath: 'index.js',
definition: { hover: 'test' },
- position: { height: 0, x: 0, y: 0 },
+ position: { height: 0, x: 0, y: 0, lineIndex: 0 },
},
},
],