1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-11 06:34:05 +02:00

Add a note about property based tests

This commit is contained in:
Alex Plate 2020-07-29 11:34:58 +03:00
parent d20955900d
commit 77a462702e
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F

View File

@ -90,6 +90,11 @@ neovim instance, and the state of IdeaVim is asserted to be the same as the stat
- Only tests that use `doTest` are checked with neovim.
- Tests with `@VimBehaviorDiffers` or `@TestWithoutNeovim` annotations don't use neovim.
#### Property-based tests
Property-based tests are located under `propertybased` package. These tests a flaky by nature
although in most cases they are stable. If the test fails on your TeamCity run, try to check the test output and understand
if the fail is caused by your changes. If it's not, just ignore the test.
## A common direction