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>2022-01-26 12:14:20 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-01-26 12:14:20 +0300
commit30b1000678f33e5b8ae5b4dcbeb2ae5162a2cc5d (patch)
tree2929d8692104f816194e7462e21bcda2c91ed10e /doc/development/experiment_guide
parent4b198b6289b1643b6e2571c03a377fe08e6ab504 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/experiment_guide')
-rw-r--r--doc/development/experiment_guide/gitlab_experiment.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/experiment_guide/gitlab_experiment.md b/doc/development/experiment_guide/gitlab_experiment.md
index 36d2a4f6fbf..d229a2a6f1b 100644
--- a/doc/development/experiment_guide/gitlab_experiment.md
+++ b/doc/development/experiment_guide/gitlab_experiment.md
@@ -596,7 +596,7 @@ NOTE:
This method of stubbing in Jest specs will not automatically un-stub itself at the end of the test. We merge our stubbed experiment in with all the other global data in `window.gl`. If you need to remove the stubbed experiment(s) after your test or ensure a clean global object before your test, you'll need to manage the global object directly yourself:
```javascript
-desribe('tests that care about global state', () => {
+describe('tests that care about global state', () => {
const originalObjects = [];
beforeEach(() => {