mirror of https://github.com/alibaba/ice.git
53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
import path from 'path';
|
|
import { fileURLToPath } from 'url';
|
|
import getPort from 'get-port';
|
|
import createService from '../../packages/ice/src/createService';
|
|
import type { Page } from './browser';
|
|
import Browser from './browser';
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
|
|
interface SetupBrowser {
|
|
(options: {
|
|
example: string;
|
|
outputDir?: string;
|
|
defaultHtml?: string;
|
|
disableJS?: boolean;
|
|
}): Promise<ReturnValue>;
|
|
}
|
|
|
|
interface ReturnValue {
|
|
page: Page;
|
|
browser: Browser;
|
|
}
|
|
|
|
// get builtIn plugins
|
|
export const buildFixture = async function (example: string, commandArgs?: Record<string, string | boolean>) {
|
|
const rootDir = path.join(__dirname, `../../examples/${example}`);
|
|
// process.env.DISABLE_FS_CACHE = 'true';
|
|
const service = await createService({
|
|
rootDir,
|
|
command: 'build',
|
|
commandArgs: {
|
|
...(commandArgs || {}),
|
|
},
|
|
});
|
|
await service.run();
|
|
};
|
|
|
|
export const setupBrowser: SetupBrowser = async (options) => {
|
|
const { example, outputDir = 'build', defaultHtml = 'index.html', disableJS = true } = options;
|
|
const rootDir = path.join(__dirname, `../../examples/${example}`);
|
|
const port = await getPort();
|
|
const browser = new Browser({ cwd: path.join(rootDir, outputDir), port });
|
|
await browser.start();
|
|
console.log();
|
|
// When preview html generate by build, the path will not match the router info,
|
|
// so hydrate will not found the route component.
|
|
const page = await browser.page(`http://127.0.0.1:${port}`, `/${defaultHtml}`, disableJS);
|
|
return {
|
|
browser,
|
|
page,
|
|
};
|
|
};
|