summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorMike Pennisi <mike@mikepennisi.com>2017-12-03 00:20:06 -0500
committerRick Waldron <waldron.rick@gmail.com>2018-01-05 15:17:51 -0500
commite6d674ef7ae0f0d82875a2abafbaf0c63db7cef1 (patch)
treef78f0176aa79c50f225fd77c59431e0c692e0301 /CONTRIBUTING.md
parent136110378bb62fefb5a9a69080067e6f126f9dae (diff)
downloadqtdeclarative-testsuites-e6d674ef7ae0f0d82875a2abafbaf0c63db7cef1.tar.gz
Rename negative test "phase" for module resolution
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 582974de8..1a3e8ddd3 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -103,7 +103,7 @@ single line comment syntax.
This means the test is expected to throw an error of the given type. If no error is thrown, a test failure is reported.
- **type**- If an error is thrown, it is implicitly converted to a string. In order for the test to pass, this value must match the name of the error constructor.
-- **phase** - Negative tests whose **phase** value is "parse" must produce the specified error prior to executing code. The value "runtime" dictates that the error is expected to be produced as a result of executing the test code.
+- **phase** - Negative tests whose **phase** value is "parse" must produce the specified error prior to executing code. The value "resolution" indicates that the error is expected to result while performing ES2015 module resolution. The value "runtime" dictates that the error is expected to be produced as a result of executing the test code.
For best practices on how to use the negative tag please see [Handling Errors and Negative Test Cases](#handling-errors-and-negative-test-cases), below.