[ci] format

This commit is contained in:
matthewp 2023-03-07 16:38:11 +00:00 committed by fredkbot
parent a206106098
commit fbab73c96e
2 changed files with 1 additions and 4 deletions

View file

@ -1,4 +1,3 @@
import type { Plugin as VitePlugin } from 'vite';
const manifestVirtualModuleId = 'astro:ssr-manifest';
@ -9,7 +8,7 @@ export function vitePluginSSRManifest(): VitePlugin {
name: '@astrojs/vite-plugin-astro-ssr-manifest',
enforce: 'post',
resolveId(id, parent) {
if(id === manifestVirtualModuleId) {
if (id === manifestVirtualModuleId) {
return resolvedManifestVirtualModuleId;
}
},

View file

@ -1,4 +1,3 @@
import { expect } from 'chai';
import { loadFixture } from './test-utils.js';
import testAdapter from './test-adapter.js';
@ -25,6 +24,5 @@ describe('astro:ssr-manifest', () => {
const $ = cheerio.load(html);
expect($('#assets').text()).to.equal('["/_astro/index.1bad7273.css"]');
});
});