mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-04-11 05:57:37 +02:00
Revert "Moved init()
directly to the describe
block"
This reverts commit e68d7c3e1c
.
This commit is contained in:
parent
e68d7c3e1c
commit
b69f7a3f17
1 changed files with 6 additions and 2 deletions
|
@ -1,7 +1,11 @@
|
|||
import { init, TestContext } from './context';
|
||||
|
||||
describe('Autocomplete keyboard navigation', async () => {
|
||||
const ctx: TestContext = await init();
|
||||
describe('Autocomplete keyboard navigation', () => {
|
||||
let ctx: TestContext;
|
||||
|
||||
beforeAll(async () => {
|
||||
ctx = await init();
|
||||
});
|
||||
|
||||
it('supports navigation via keyboard', async () => {
|
||||
await ctx.setInput('f');
|
||||
|
|
Loading…
Add table
Reference in a new issue