From f520e27f40aaa344791df213028c0fca043582cd Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Sat, 19 Aug 2017 13:32:03 -0700 Subject: [PATCH] Fix tests --- fixtures/typings-test/typings-test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fixtures/typings-test/typings-test.ts b/fixtures/typings-test/typings-test.ts index e6fcd5a1..0770233a 100644 --- a/fixtures/typings-test/typings-test.ts +++ b/fixtures/typings-test/typings-test.ts @@ -145,7 +145,9 @@ namespace methods_core { } { const t: Terminal = new Terminal(); - t.setOption('cursorStyle', 'foo'); + t.setOption('cursorStyle', 'bar'); + t.setOption('cursorStyle', 'block'); + t.setOption('cursorStyle', 'underline'); t.setOption('termName', 'foo'); t.setOption('cancelEvents', true); t.setOption('convertEol', true);