Skip to content

Commit 68b5524

Browse files
ovflowdclaude
andcommitted
fix(platform): restore platform-vercel next config test under platforms/
The prior commit accidentally dropped this test during the directory rename rather than moving it alongside the other platforms/vercel files. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 62528e8 commit 68b5524

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import assert from 'node:assert/strict';
2+
import { describe, it } from 'node:test';
3+
4+
describe('platform-vercel next.platform.config', () => {
5+
it('defines shiki mdx defaults for Vercel builds', async () => {
6+
const { default: platform } = await import('../next.platform.config.mjs');
7+
8+
assert.deepEqual(platform.mdx, {
9+
wasm: true,
10+
twoslash: true,
11+
});
12+
});
13+
});

0 commit comments

Comments
 (0)