diff options
author | 2025-02-07 09:09:37 +0000 | |
---|---|---|
committer | 2025-02-07 09:09:37 +0000 | |
commit | 0063ecb06335b653935fb056481efbe80bf90087 (patch) | |
tree | 7c184168e8d4a66b50d43f5a62a06bcbf1970075 /packages/integrations/cloudflare/test/with-vue.test.js | |
parent | 9b8042a1ed2068c398d77a73503b82d3e68424d1 (diff) | |
download | astro-0063ecb06335b653935fb056481efbe80bf90087.tar.gz astro-0063ecb06335b653935fb056481efbe80bf90087.tar.zst astro-0063ecb06335b653935fb056481efbe80bf90087.zip |
chore: fix linting issues
Diffstat (limited to 'packages/integrations/cloudflare/test/with-vue.test.js')
-rw-r--r-- | packages/integrations/cloudflare/test/with-vue.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/cloudflare/test/with-vue.test.js b/packages/integrations/cloudflare/test/with-vue.test.js index 60e210750..8e7befae6 100644 --- a/packages/integrations/cloudflare/test/with-vue.test.js +++ b/packages/integrations/cloudflare/test/with-vue.test.js @@ -17,13 +17,13 @@ describe('Vue', () => { // console.log('[stdout]', data.toString()); if (data.toString().includes('http://127.0.0.1:8788')) resolve(); }); - wrangler.stderr.on('data', (data) => { + wrangler.stderr.on('data', (_data) => { // console.log('[stderr]', data.toString()); }); }); }); - after((done) => { + after((_done) => { wrangler.kill(); }); |