From ec9b5f329d75aadbf6acf0b9b66abd466eff86df Mon Sep 17 00:00:00 2001 From: Scott Feeney Date: Mon, 25 Nov 2024 18:04:04 -0800 Subject: [PATCH] test: remove unused mock --- src/gtfs-helpers.test.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gtfs-helpers.test.js b/src/gtfs-helpers.test.js index ec72a30..7e3c4a3 100644 --- a/src/gtfs-helpers.test.js +++ b/src/gtfs-helpers.test.js @@ -2,8 +2,6 @@ import { expect, test, describe, vi } from 'vitest'; const { filterRouteIds, filterTripIds, getInterestingStopIds, getInterestingStopsAsGeoJsonPoints } = require('./gtfs-helpers'); const { PassThrough } = require('stream'); -vi.mock('node:fs/promises'); - describe('#filterRouteIds', async () => { test('should select all the IDs that have a matching prefix', async () => { const mockReadable = new PassThrough();