insomnia/packages/insomnia-smoke-test/tests/prerelease/basic-interactions.test.ts
Filipe Freire 5bba2e9545
[INS-2022] Initial exploration multiple test projects (#5244)
* Initial exploration multiple test projects

* Replace duplicate scenario with one to be filled in

* Simplify number of playwright project configs

* Fix testMatch setting on playwright config

* Edit github actions to distinguish between CI and Release runs
2022-10-11 08:56:12 +00:00

10 lines
251 B
TypeScript

import { expect } from '@playwright/test';
import { test } from '../../playwright/test';
test('Basic interactions', async ({ }) => {
// TODO(filfreire): add a few scenarios ported from the release checklist
await expect(true).toBeTruthy();
});