(p, content, opts)
| 7336 | }); |
| 7337 | } |
| 7338 | writeFileSync(p, content, opts) { |
| 7339 | return this.makeCallSync(p, () => { |
| 7340 | return this.baseFs.writeFileSync(p, content, opts); |
| 7341 | }, (mountFs, { subPath }) => { |
| 7342 | return mountFs.writeFileSync(subPath, content, opts); |
| 7343 | }); |
| 7344 | } |
| 7345 | async unlinkPromise(p) { |
| 7346 | return await this.makeCallPromise(p, async () => { |
| 7347 | return await this.baseFs.unlinkPromise(p); |
nothing calls this directly
no test coverage detected