Skip to content

Commit 7461db4

Browse files
committed
Fix compile issue
1 parent 5885042 commit 7461db4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/vs/workbench/contrib/terminal/test/browser/xterm/xtermTerminal.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ import { ContextMenuService } from 'vs/platform/contextview/browser/contextMenuS
3030
import { TestLifecycleService } from 'vs/workbench/test/browser/workbenchTestServices';
3131
import { ILifecycleService } from 'vs/workbench/services/lifecycle/common/lifecycle';
3232

33-
class TestWebglAddon {
33+
class TestWebglAddon implements WebglAddon {
3434
static shouldThrow = false;
3535
static isEnabled = false;
3636
readonly onChangeTextureAtlas = new Emitter().event as IEvent<HTMLCanvasElement>;
37+
readonly onAddTextureAtlasCanvas = new Emitter().event as IEvent<HTMLCanvasElement>;
3738
readonly onContextLoss = new Emitter().event as IEvent<void>;
3839
activate() {
3940
TestWebglAddon.isEnabled = !TestWebglAddon.shouldThrow;

0 commit comments

Comments
 (0)