From 62f856d04734da447d611453be9a8075097b8380 Mon Sep 17 00:00:00 2001 From: cgewecke Date: Mon, 29 Jun 2020 06:58:13 -0700 Subject: [PATCH] Fix --testfiles README example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 03722c1..bd49cfa 100644 --- a/README.md +++ b/README.md @@ -73,8 +73,8 @@ npx buidler coverage --network coverage [command-options] ## Command Options | Option | Example | Description | |--------------|------------------------------------|--------------------------------| -| file | `--file="test/registry/*.js"` | (Truffle) Filename or glob describing a subset of JS tests to run. (Globs must be enclosed by quotes.)| -| testfiles | `--testfiles test/file.js` | (Buidler) JS test file(s) to run.| +| file | `--file="test/registry/*.js"` | (Truffle) Filename or glob describing a subset of tests to run. (Globs must be enclosed by quotes.)| +| testfiles | `--testfiles="test/registry/*.ts"` | (Buidler) Test file(s) to run. (Globs must be enclosed by quotes.)| | solcoverjs | `--solcoverjs ./../.solcover.js` | Relative path from working directory to config. Useful for monorepo packages that share settings. (Path must be "./" prefixed) | | network | `--network development` | Use network settings defined in the Truffle or Buidler config | | temp[*][14] | `--temp build` | :warning: **Caution** :warning: Path to a *disposable* folder to store compilation artifacts in. Useful when your test setup scripts include hard-coded paths to a build directory. [More...][14] |