From ebfa2018dd5611e367880db21f045ac7dd34178a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Breitbart?= Date: Sat, 20 May 2023 15:28:15 +0200 Subject: [PATCH] revert wrong added file --- test/benchmark/Terminal.benchmark.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/benchmark/Terminal.benchmark.ts b/test/benchmark/Terminal.benchmark.ts index 3b56a7aa..812871a6 100644 --- a/test/benchmark/Terminal.benchmark.ts +++ b/test/benchmark/Terminal.benchmark.ts @@ -8,7 +8,6 @@ import { perfContext, before, ThroughputRuntimeCase } from 'xterm-benchmark'; import { spawn } from 'node-pty'; import { Utf8ToUtf32, stringFromCodePoint } from 'common/input/TextDecoder'; import { Terminal } from 'browser/Terminal'; -import { UnicodeGraphemesAddon } from 'UnicodeGraphemesAddon'; perfContext('Terminal: ls -lR /usr/lib', () => { @@ -50,8 +49,6 @@ perfContext('Terminal: ls -lR /usr/lib', () => { let terminal: Terminal; before(() => { terminal = new Terminal({ cols: 80, rows: 25, scrollback: 1000 }); - const uga = new UnicodeGraphemesAddon(); - (terminal as any).loadAddon(uga); }); new ThroughputRuntimeCase('', async () => { await new Promise(res => terminal.write(content, res));