* Enters a directory In local filesystem. * Starts from a current directory * @param {string} openPath
(openPath)
| 53 | * @param {string} openPath |
| 54 | */ |
| 55 | amInPath(openPath) { |
| 56 | this.dir = path.join(store.codeceptDir, openPath) |
| 57 | try { |
| 58 | this.debugSection('Dir', this.dir) |
| 59 | } catch (e) { |
| 60 | // Fallback debug for ESM transition |
| 61 | console.log(`[Dir] ${this.dir}`) |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Writes text to file |
no test coverage detected