@adonisjs/assembler 6.1.3-10 → 6.1.3-11

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.
@@ -85,7 +85,7 @@ export class TestRunner {
85
85
  args.push('--failed');
86
86
  }
87
87
  if (this.#options.retries !== undefined) {
88
- args.push('--timeout');
88
+ args.push('--retries');
89
89
  args.push(String(this.#options.retries));
90
90
  }
91
91
  return args;
@@ -114,12 +114,8 @@ export class TestRunner {
114
114
  args.push('--tags');
115
115
  args.push(filters.tags.join(','));
116
116
  }
117
- if (filters.ignoreTags) {
118
- args.push('--ignore-tags');
119
- args.push(filters.ignoreTags.join(','));
120
- }
121
117
  if (filters.tests) {
122
- args.push('--ignore-tests');
118
+ args.push('--tests');
123
119
  args.push(filters.tests.join(','));
124
120
  }
125
121
  return args;
@@ -68,7 +68,6 @@ export type TestRunnerOptions = {
68
68
  groups: string[];
69
69
  files: string[];
70
70
  tags: string[];
71
- ignoreTags: string[];
72
71
  }>;
73
72
  reporters?: string[];
74
73
  timeout?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adonisjs/assembler",
3
- "version": "6.1.3-10",
3
+ "version": "6.1.3-11",
4
4
  "description": "Provides utilities to run AdonisJS development server and build project for production",
5
5
  "main": "build/index.js",
6
6
  "type": "module",