proby 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/run.js +1 -1
  2. package/package.json +3 -3
package/lib/run.js CHANGED
@@ -17,7 +17,7 @@ export default async (root, subrepo) => {
17
17
  print(`${blue(subrepo)}\n`);
18
18
  }
19
19
  const failed = [];
20
- for (const test of repository.run()) {
20
+ for await (const test of repository.run()) {
21
21
  for (const result of test.results) {
22
22
  if (result.passed) {
23
23
  print(green("o"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proby",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Standard library test runner",
5
5
  "bugs": "https://github.com/rcompat/rcompat/issues",
6
6
  "license": "MIT",
@@ -17,11 +17,11 @@
17
17
  },
18
18
  "dependencies": {
19
19
  "@rcompat/cli": "^0.9.0",
20
- "@rcompat/fs": "^0.13.0",
20
+ "@rcompat/fs": "^0.13.2",
21
21
  "@rcompat/package": "^0.12.0"
22
22
  },
23
23
  "peerDependencies": {
24
- "@rcompat/test": "^0.2.0"
24
+ "@rcompat/test": "^0.2.1"
25
25
  },
26
26
  "peerDependenciesMeta": {
27
27
  "@rcompat/test": {