@travetto/test 7.0.0-rc.0 → 7.0.0-rc.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/test",
3
- "version": "7.0.0-rc.0",
3
+ "version": "7.0.0-rc.1",
4
4
  "description": "Declarative test framework",
5
5
  "keywords": [
6
6
  "unit-testing",
@@ -27,15 +27,15 @@
27
27
  "directory": "module/test"
28
28
  },
29
29
  "dependencies": {
30
- "@travetto/registry": "^7.0.0-rc.0",
31
- "@travetto/runtime": "^7.0.0-rc.0",
32
- "@travetto/terminal": "^7.0.0-rc.0",
33
- "@travetto/worker": "^7.0.0-rc.0",
30
+ "@travetto/registry": "^7.0.0-rc.1",
31
+ "@travetto/runtime": "^7.0.0-rc.1",
32
+ "@travetto/terminal": "^7.0.0-rc.1",
33
+ "@travetto/worker": "^7.0.0-rc.1",
34
34
  "yaml": "^2.8.1"
35
35
  },
36
36
  "peerDependencies": {
37
- "@travetto/cli": "^7.0.0-rc.0",
38
- "@travetto/transformer": "^7.0.0-rc.0"
37
+ "@travetto/cli": "^7.0.0-rc.1",
38
+ "@travetto/transformer": "^7.0.0-rc.1"
39
39
  },
40
40
  "peerDependenciesMeta": {
41
41
  "@travetto/transformer": {
@@ -109,7 +109,7 @@ export class SuiteRegistryAdapter implements RegistryAdapter<SuiteConfig> {
109
109
 
110
110
  for (const test of Object.values(this.#config.tests)) {
111
111
  test.tags = [...test.tags ?? [], ...this.#config.tags ?? []];
112
- test.description ||= SchemaRegistryIndex.getMethodConfig(this.#cls, test.methodName).description;
112
+ test.description ||= SchemaRegistryIndex.get(this.#cls).getMethod(test.methodName).description;
113
113
  }
114
114
  }
115
115