Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(css)!: remove default import in ssr dev #17922

Merged
merged 7 commits into from
Oct 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chroe: fix test
  • Loading branch information
bluwy committed Oct 24, 2024
commit c1e277d801d0415803ddc96843733afad1557f99
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('module runner initialization', async () => {

it('css is loaded correctly', async ({ runner }) => {
const css = await runner.import('/fixtures/test.css')
expect(css.default).toMatchInlineSnapshot(undefined)
expect(css.default).toBe(undefined)
const module = await runner.import('/fixtures/test.module.css')
expect(module).toMatchObject({
default: {
Expand Down