提交 e52805a9 编写于 作者: D Daniel Imms

Add missing semicolons

上级 112a60d6
...@@ -247,7 +247,7 @@ suite('window namespace tests', () => { ...@@ -247,7 +247,7 @@ suite('window namespace tests', () => {
}); });
const renderer = window.createTerminalRenderer('foo'); const renderer = window.createTerminalRenderer('foo');
}); });
}) });
suite('Virtual process terminals', () => { suite('Virtual process terminals', () => {
test('should fire onDidOpenTerminal and onDidCloseTerminal', (done) => { test('should fire onDidOpenTerminal and onDidCloseTerminal', (done) => {
...@@ -317,7 +317,7 @@ suite('window namespace tests', () => { ...@@ -317,7 +317,7 @@ suite('window namespace tests', () => {
const reg2 = window.onDidChangeTerminalDimensions(e => { const reg2 = window.onDidChangeTerminalDimensions(e => {
equal(e.dimensions.columns, 10); equal(e.dimensions.columns, 10);
equal(e.dimensions.rows, 5); equal(e.dimensions.rows, 5);
equal(e.terminal, terminal) equal(e.terminal, terminal);
reg2.dispose(); reg2.dispose();
const reg3 = window.onDidCloseTerminal(() => { const reg3 = window.onDidCloseTerminal(() => {
reg3.dispose(); reg3.dispose();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册