mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
5bba2e9545
* 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
10 lines
251 B
TypeScript
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();
|
|
});
|