diff options
author | Winnie Hellmann <winnie@gitlab.com> | 2018-07-09 14:53:33 +0000 |
---|---|---|
committer | Winnie Hellmann <winnie@gitlab.com> | 2018-07-09 14:53:33 +0000 |
commit | d8013704b66a9f8653af87c8202d980cc30cb003 (patch) | |
tree | d01ccc960e9b95f37e27ca6333ac157141441af1 | |
parent | 2b4509c4a45d8c02d89fa48bb24e50c20e51b40c (diff) | |
download | gitlab-ce-d8013704b66a9f8653af87c8202d980cc30cb003.tar.gz |
Document that we don't want to wait in testswinh-waiting-in-tests
-rw-r--r-- | doc/development/testing_guide/frontend_testing.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/development/testing_guide/frontend_testing.md b/doc/development/testing_guide/frontend_testing.md index 3b2b9c8c947..f8993653aec 100644 --- a/doc/development/testing_guide/frontend_testing.md +++ b/doc/development/testing_guide/frontend_testing.md @@ -172,6 +172,10 @@ object which can be treated like any other jasmine spy object. Further documentation on the babel rewire pluign API can be found on [its repository Readme doc](https://github.com/speedskater/babel-plugin-rewire#babel-plugin-rewire). +#### Waiting in tests + +If you cannot avoid using [`setTimeout`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/setTimeout) in tests, please use the [Jasmine mock clock](https://jasmine.github.io/api/2.9/Clock.html). + ### Vue.js unit tests See this [section][vue-test]. |