fix: TextField not secure when keyboardType="number" (#5012)

This commit is contained in:
Vasil Chimev
2017-10-31 18:29:39 +02:00
committed by GitHub
parent 32b9ec2159
commit 3e6f465cc8
3 changed files with 40 additions and 5 deletions

View File

@@ -48,7 +48,7 @@ allTests["HTTP"] = httpTests;
## Writing Test Module
The test modules are actually TypeScript modules which export unit tests and hooks as functions following this convention:
* All exported functions which with a `test` prefix are unit-tests.
* All exported functions with a `test` prefix are unit-tests.
* The `setUpModule()` hook is called once - before all the tests in the module.
* The `setUp()` hook is called before each tests.
* The `tearDown()` hook called after each tests.