Skip to content

refactor(dev-server-import-maps): migrate tests to node:test#3084

Merged
bashmish merged 2 commits into
masterfrom
migrate/dev-server-import-maps-node-test
Jun 16, 2026
Merged

refactor(dev-server-import-maps): migrate tests to node:test#3084
bashmish merged 2 commits into
masterfrom
migrate/dev-server-import-maps-node-test

Conversation

@bennypowers

Copy link
Copy Markdown
Member

Summary

  • Migrate @web/dev-server-import-maps node tests from mocha/chai/hanbi to node:test + node:assert/strict + node:test mock API
  • Rename test script to test:node so root npm run test:node --workspaces picks it up
  • test:browser script unchanged (browser tests still use @web/test-runner-mocha)
  • 2 TS test files, imports from dist/, __dirname -> import.meta.dirname
  • hanbi spy() replaced with mock.fn()
  • --experimental-strip-types added to override CI NODE_OPTIONS workaround

Test plan

  • 24/24 tests pass on Node 22.22.3 with NODE_OPTIONS='--no-experimental-strip-types'
  • ESLint clean
  • Prettier clean
  • Code review clean

…de:test

Replace mocha globals, chai assertions, and hanbi spies with node:test,
node:assert/strict, and node:test mock API. Rename `test` to `test:node`.

- `import { expect } from 'chai'` -> `import assert from 'node:assert/strict'`
- `import { spy } from 'hanbi'` -> `import { mock } from 'node:test'`
- `spy()` / `spy.handler` -> `mock.fn()`
- `spy.callCount` -> `fn.mock.callCount()`
- `spy.getCall(n).args` -> `fn.mock.calls[n].arguments`
- `__dirname` -> `import.meta.dirname`
- `../src/*.js` -> `../dist/*.js`
- Add `--experimental-strip-types` to override CI NODE_OPTIONS workaround

Assisted-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@changeset-bot

changeset-bot Bot commented Jun 1, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 113fd37

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@bashmish bashmish merged commit fcd7840 into master Jun 16, 2026
5 of 7 checks passed
@bashmish bashmish deleted the migrate/dev-server-import-maps-node-test branch June 16, 2026 15:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants