Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/diffs/components/diff_file_spec.js')
-rw-r--r--spec/frontend/diffs/components/diff_file_spec.js24
1 files changed, 23 insertions, 1 deletions
diff --git a/spec/frontend/diffs/components/diff_file_spec.js b/spec/frontend/diffs/components/diff_file_spec.js
index 34af3d72b04..a9fbf4632ac 100644
--- a/spec/frontend/diffs/components/diff_file_spec.js
+++ b/spec/frontend/diffs/components/diff_file_spec.js
@@ -23,7 +23,7 @@ import eventHub from '~/diffs/event_hub';
import { diffViewerModes, diffViewerErrors } from '~/ide/constants';
import axios from '~/lib/utils/axios_utils';
-import { scrollToElement } from '~/lib/utils/common_utils';
+import { scrollToElement, isElementStuck } from '~/lib/utils/common_utils';
import { HTTP_STATUS_OK } from '~/lib/utils/http_status';
import createNotesStore from '~/notes/stores/modules';
import diffsModule from '~/diffs/store/modules';
@@ -399,6 +399,27 @@ describe('DiffFile', () => {
});
});
+ describe('automatically collapsed generated file', () => {
+ beforeEach(() => {
+ makeFileAutomaticallyCollapsed(store);
+ const file = store.state.diffs.diffFiles[0];
+ Object.assign(store.state.diffs.diffFiles[0], {
+ ...file,
+ viewer: {
+ ...file.viewer,
+ generated: true,
+ },
+ });
+ });
+
+ it('should show the generated file warning with expansion button', () => {
+ expect(findDiffContentArea(wrapper).html()).toContain(
+ 'Generated files are collapsed by default. This behavior can be overriden via .gitattributes file if required.',
+ );
+ expect(findToggleButton(wrapper).exists()).toBe(true);
+ });
+ });
+
describe('not collapsed', () => {
beforeEach(() => {
makeFileOpenByDefault(store);
@@ -429,6 +450,7 @@ describe('DiffFile', () => {
describe('scoll-to-top of file after collapse', () => {
beforeEach(() => {
jest.spyOn(wrapper.vm.$store, 'dispatch').mockImplementation(() => {});
+ isElementStuck.mockReturnValueOnce(true);
});
it("scrolls to the top when the file is open, the users initiates the collapse, and there's a content block to scroll to", async () => {