insomnia/packages/insomnia-smoke-test/playwright/test.ts
Jack Kavanagh b19c4ec857
skip analytics in ci (#5385)
* skip analytics in ci

* fix incognito mode env var not working on build

Co-authored-by: Filipe Freire <livrofubia@gmail.com>
2022-11-04 17:32:12 +00:00

77 lines
2.2 KiB
TypeScript

// Read more about creating fixtures https://playwright.dev/docs/test-fixtures
import { ElectronApplication, test as baseTest, TraceMode } from '@playwright/test';
import path from 'path';
import {
bundleType,
cwd,
executablePath,
mainPath,
randomDataPath,
} from './paths';
interface EnvOptions {
INSOMNIA_DATA_PATH: string;
INSOMNIA_API_URL: string;
INSOMNIA_APP_WEBSITE_URL: string;
INSOMNIA_GITHUB_API_URL: string;
INSOMNIA_GITLAB_API_URL: string;
INSOMNIA_INCOGNITO_MODE: string;
}
export const test = baseTest.extend<{
app: ElectronApplication;
}>({
app: async ({ playwright, trace }, use, testInfo) => {
const webServerUrl = testInfo.config.webServer?.url;
const options: EnvOptions = {
INSOMNIA_DATA_PATH: randomDataPath(),
INSOMNIA_API_URL: webServerUrl + '/api',
INSOMNIA_APP_WEBSITE_URL: webServerUrl + '/website',
INSOMNIA_GITHUB_API_URL: webServerUrl + '/github-api/graphql',
INSOMNIA_GITLAB_API_URL: webServerUrl + '/gitlab-api',
INSOMNIA_INCOGNITO_MODE: 'true',
};
const electronApp = await playwright._electron.launch({
cwd,
executablePath,
args: bundleType() === 'package' ? [] : [mainPath],
env: {
...process.env,
...options,
PLAYWRIGHT: 'true',
},
});
const appContext = electronApp.context();
const traceMode: TraceMode = typeof trace === 'string' ? trace as TraceMode : trace.mode;
const defaultTraceOptions = { screenshots: true, snapshots: true, sources: true };
const traceOptions = typeof trace === 'string' ? defaultTraceOptions : { ...defaultTraceOptions, ...trace, mode: undefined };
const captureTrace = (traceMode === 'on' || traceMode === 'retain-on-failure' || (traceMode === 'on-first-retry' && testInfo.retry === 1));
if (captureTrace) {
await appContext.tracing.start(traceOptions);
}
await use(electronApp);
if (captureTrace) {
await appContext.tracing.stop({
path: path.join(testInfo.outputDir, 'trace.zip'),
});
}
await electronApp.close();
},
page: async ({ app }, use) => {
const page = await app.firstWindow();
await page.waitForLoadState();
await use(page);
},
});