(context, config)
| 6 | |
| 7 | class CoreTest { |
| 8 | constructor(context, config) { |
| 9 | this.file = context.test.file; |
| 10 | this.syntax = context.test.parent.title; |
| 11 | |
| 12 | this.Comb = Comb; |
| 13 | this.comb = new Comb(); |
| 14 | if (config) this.comb.configure(config); |
| 15 | } |
| 16 | |
| 17 | useConfig(name) { |
| 18 | let config = Comb.getConfig(name); |