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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-10-20 03:09:22 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-10-20 03:09:22 +0300
commitb0326eded36304dff5c061b0d10d0630113d9f0a (patch)
tree6238d5800380719c19fb64d3eec86b6abab42202 /spec/frontend/ref
parent376ae6f3b376d6956fe037c9097b48a2e4867859 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/ref')
-rw-r--r--spec/frontend/ref/components/ref_selector_spec.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/frontend/ref/components/ref_selector_spec.js b/spec/frontend/ref/components/ref_selector_spec.js
index 00b1d5cfbe2..5eee22f479e 100644
--- a/spec/frontend/ref/components/ref_selector_spec.js
+++ b/spec/frontend/ref/components/ref_selector_spec.js
@@ -313,7 +313,7 @@ describe('Ref selector component', () => {
findBranchesSection()
.find('[data-testid="section-header"]')
.text(),
- ).toBe('Branches 123');
+ ).toMatchInterpolatedText('Branches 123');
});
it("does not render an error message in the branches section's body", () => {
@@ -392,7 +392,7 @@ describe('Ref selector component', () => {
findTagsSection()
.find('[data-testid="section-header"]')
.text(),
- ).toBe('Tags 456');
+ ).toMatchInterpolatedText('Tags 456');
});
it("does not render an error message in the tags section's body", () => {
@@ -460,7 +460,7 @@ describe('Ref selector component', () => {
findCommitsSection()
.find('[data-testid="section-header"]')
.text(),
- ).toBe('Commits 1');
+ ).toMatchInterpolatedText('Commits 1');
});
it("does not render an error message in the comits section's body", () => {