update CONTRIBUTING.md

[skip ci]
pull/90/head
Nolan Lawson 2018-04-11 20:33:34 -07:00
rodzic 95c3349db7
commit e9b6f69f8c
1 zmienionych plików z 11 dodań i 1 usunięć

Wyświetl plik

@ -77,4 +77,14 @@ In separate terminals:
If you want to export the current data in the Mastodon instance as canned data, If you want to export the current data in the Mastodon instance as canned data,
so that it can be loaded later, run: so that it can be loaded later, run:
npm run backup-mastodon-data npm run backup-mastodon-data
## Writing tests
Tests use [TestCafé](https://devexpress.github.io/testcafe/). The tests have a naming convention:
* `0xx-test-name.js`: tests that don't modify the Mastodon database (post, delete, follow, etc.)
* `1xx-test-name.js`: tests that do modify the Mastodon database
In principle the `0-` tests don't have to worry about
clobbering each other, whereas the `1-` ones do.