Skip to content

Commit 8ab2fe7

Browse files
authored
Merge pull request #10 from ashanan/patch-1
Update README.md
2 parents 18f4063 + eaf4e38 commit 8ab2fe7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ Before we get to the comparison, I'd like to discuss a few concepts. All of the
264264

265265
"Serial" - one at a time, ie - the first must complete before the second, the second must complete before the third, etc. Code _may_ run asynchronously but doesn't start a separate process. This type of processing is also known as sequential processing.
266266

267-
"Parallel" - happening simultaneously, ie - the first, second, third, etc can happen at the same time. Multiple tasks are completed at a time by different processes (which may different threads or literally different processors).
267+
"Parallel" - happening simultaneously, ie - the first, second, third, etc can happen at the same time. Multiple tasks are completed at a time by different processes (which may be different threads or literally different processors).
268268

269269
For all of the frameworks with parallel capabilities, only separate test files are run in parallel. `describe` and `it` blocks in a given file/suite are run serially. Given this, writing more test files and putting slow tests can be put into their own files may increase the speed of running the complete test suite.
270270

0 commit comments

Comments
 (0)