@neurodevs/meta-node 0.14.26 → 0.14.27
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.
|
@@ -81,11 +81,11 @@ export default class ImplAutomoduleTest extends AbstractAutomoduleTest {
|
|
|
81
81
|
}
|
|
82
82
|
static get testFilePattern() {
|
|
83
83
|
return `
|
|
84
|
-
import
|
|
84
|
+
import AbstractModuleTest, { test, assert } from '@neurodevs/node-tdd'
|
|
85
85
|
|
|
86
86
|
import ${this.implName}, { ${this.interfaceName} } from '../../impl/${this.implName}.js'
|
|
87
87
|
|
|
88
|
-
export default class ${this.implName}Test extends
|
|
88
|
+
export default class ${this.implName}Test extends AbstractModuleTest {
|
|
89
89
|
private static instance: ${this.interfaceName}
|
|
90
90
|
|
|
91
91
|
protected static async beforeEach() {
|
|
@@ -29,11 +29,11 @@ export default class ImplAutomodule extends AbstractAutomodule {
|
|
|
29
29
|
}
|
|
30
30
|
get testFilePattern() {
|
|
31
31
|
return `
|
|
32
|
-
import
|
|
32
|
+
import AbstractModuleTest, { test, assert } from '@neurodevs/node-tdd'
|
|
33
33
|
|
|
34
34
|
import ${this.implName}, { ${this.interfaceName} } from '../../impl/${this.implName}.js'
|
|
35
35
|
|
|
36
|
-
export default class ${this.implName}Test extends
|
|
36
|
+
export default class ${this.implName}Test extends AbstractModuleTest {
|
|
37
37
|
private static instance: ${this.interfaceName}
|
|
38
38
|
|
|
39
39
|
protected static async beforeEach() {
|
package/package.json
CHANGED
|
@@ -136,11 +136,11 @@ export default class ImplAutomoduleTest extends AbstractAutomoduleTest {
|
|
|
136
136
|
|
|
137
137
|
private static get testFilePattern() {
|
|
138
138
|
return `
|
|
139
|
-
import
|
|
139
|
+
import AbstractModuleTest, { test, assert } from '@neurodevs/node-tdd'
|
|
140
140
|
|
|
141
141
|
import ${this.implName}, { ${this.interfaceName} } from '../../impl/${this.implName}.js'
|
|
142
142
|
|
|
143
|
-
export default class ${this.implName}Test extends
|
|
143
|
+
export default class ${this.implName}Test extends AbstractModuleTest {
|
|
144
144
|
private static instance: ${this.interfaceName}
|
|
145
145
|
|
|
146
146
|
protected static async beforeEach() {
|
|
@@ -44,11 +44,11 @@ export default class ImplAutomodule extends AbstractAutomodule {
|
|
|
44
44
|
|
|
45
45
|
private get testFilePattern() {
|
|
46
46
|
return `
|
|
47
|
-
import
|
|
47
|
+
import AbstractModuleTest, { test, assert } from '@neurodevs/node-tdd'
|
|
48
48
|
|
|
49
49
|
import ${this.implName}, { ${this.interfaceName} } from '../../impl/${this.implName}.js'
|
|
50
50
|
|
|
51
|
-
export default class ${this.implName}Test extends
|
|
51
|
+
export default class ${this.implName}Test extends AbstractModuleTest {
|
|
52
52
|
private static instance: ${this.interfaceName}
|
|
53
53
|
|
|
54
54
|
protected static async beforeEach() {
|