Skip to content

Commit 15169a0

Browse files
Update cspell, formatting
Signed-off-by: Andy Jakubowski <hello@andyjakubowski.com>
1 parent 38d4300 commit 15169a0

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"coreutils",
4040
"csstree",
4141
"deepnote",
42+
"exenv",
4243
"ipynb",
4344
"Jakubowski",
4445
"jlpm",

src/__tests__/NotebookPicker.spec.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ describe('NotebookPicker', () => {
5252
});
5353

5454
it('should render a select element', async () => {
55-
await framePromise(); // wait for rendering
56-
const select = document.querySelector('select') as HTMLSelectElement;
57-
expect(select).not.toBeNull();
58-
expect(select.options.length).toBe(2);
59-
expect(select.options[0] && select.options[0].value).toBe('nb1');
60-
});
55+
await framePromise(); // wait for rendering
56+
const select = document.querySelector('select') as HTMLSelectElement;
57+
expect(select).not.toBeNull();
58+
expect(select.options.length).toBe(2);
59+
expect(select.options[0] && select.options[0].value).toBe('nb1');
60+
});
6161

6262
it('should call fromJSON when selecting a notebook', async () => {
6363
const select = document.querySelector('select') as HTMLSelectElement;
@@ -108,4 +108,4 @@ describe('NotebookPicker', () => {
108108
expect(select.options.length).toBeGreaterThanOrEqual(1);
109109
expect(select.options[0] && select.options[0].value).toBe('-');
110110
});
111-
});
111+
});

0 commit comments

Comments
 (0)