remove proxy

This commit is contained in:
Simon Lamon
2021-12-25 14:02:09 +00:00
parent bac4eba35e
commit 65182176b9
6 changed files with 58 additions and 32 deletions
+4
View File
@@ -189,6 +189,10 @@ describe('API Integration Tests', function(): void {
assert.equal(await page.evaluate(`window.term.options.fontSize`), 30);
assert.equal(await page.evaluate(`window.term.options.fontFamily`), 'Arial');
});
it('object.keys return the correct number of options', async () => {
await openTerminal(page);
assert.notEqual(await page.evaluate(`Object.keys(window.term.options).length`), 0);
});
});
describe('renderer', () => {