@lewiswright/vitest-plugin-vis
Version:
Vitest visual testing plugin
32 lines • 883 B
TypeScript
import type { BrowserCommands, Platform } from '@vitest/browser/context';
import type { SerializedConfig } from 'vitest';
export declare const server: {
/**
* Platform the Vitest server is running on.
* The same as calling `process.platform` on the server.
*/
platform: Platform;
/**
* Runtime version of the Vitest server.
* The same as calling `process.version` on the server.
*/
version: string;
/**
* Name of the browser provider.
*/
provider: string;
/**
* Name of the current browser.
*/
browser: string;
/**
* Available commands for the browser.
* @see {@link https://vitest.dev/guide/browser/commands}
*/
commands: BrowserCommands;
/**
* Serialized test config.
*/
config: SerializedConfig;
};
//# sourceMappingURL=vitest_browser_context_proxy.d.ts.map