mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
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();
|
||
|
});
|