You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this commit, I've refactored the import statements and destructuring assignments in the codebase to enhance code organization and maintainability. The primary changes are as follows:
1. Replaced the import statement:
- From: `import { tap, run } from 'node:test/reporters';`
- To:
- `import { run } from 'node:test';`
- `import { tap } from 'node:test/reporters';`
2. Reorganized destructuring assignments:
- From:
```
const { tap, run } = require('node:test/reporters');
const process = require('process');
```
- To:
```
const { run } = require('node:test');
const { tap } = require('node:test/reporters');
```
0 commit comments