(dir, name)
| 15 | helper.command.setFeatures('legacy-workspace-config'); |
| 16 | }); |
| 17 | const createFile = (dir, name) => { |
| 18 | const componentFixture = `module.exports = function foo() { return 'got ${name}'; };`; |
| 19 | fs.outputFileSync(path.join(helper.scopes.localPath, dir, `${name}.js`), componentFixture); |
| 20 | }; |
| 21 | after(() => { |
| 22 | helper.scopeHelper.destroy(); |
| 23 | }); |