Skip to content

Commit c651f5b

Browse files
committed
wip
1 parent e8bd019 commit c651f5b

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

packages/signals/signals-integration-tests/src/helpers/base-page-object.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,6 @@ export class BasePage {
5454
await this.page.route('https://api.segment.io/v1/*', (route, request) => {
5555
this.lastTrackingApiReq = request
5656
this.trackingApiReqs.push(request.postDataJSON())
57-
// eslint-disable-next-line @typescript-eslint/no-var-requires
58-
require('fs').writeFileSync(
59-
'tracking-api-req.json',
60-
JSON.stringify(this.trackingApiReqs, null, 2)
61-
)
6257
if (request.method().toLowerCase() !== 'post') {
6358
throw new Error(`Unexpected method: ${request.method()}`)
6459
}

0 commit comments

Comments
 (0)