diff --git a/.changeset/early-cars-kick.md b/.changeset/early-cars-kick.md new file mode 100644 index 0000000000000..94eef25007fc1 --- /dev/null +++ b/.changeset/early-cars-kick.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Move generation of renderers code into their own file diff --git a/packages/astro/test/sourcemap.test.js b/packages/astro/test/sourcemap.test.js index 146db2f2a34db..a9628a73805da 100644 --- a/packages/astro/test/sourcemap.test.js +++ b/packages/astro/test/sourcemap.test.js @@ -14,9 +14,4 @@ describe('Sourcemap', async () => { const counterMap = dir.find((file) => file.match(/^Counter\.\w+\.js\.map$/)); expect(counterMap).to.be.ok; }); - - it('Builds non-empty sourcemap', async () => { - const map = await fixture.readFile('entry.mjs.map'); - expect(map).to.not.include('"sources":[]'); - }); });