From 6bca3732e3910f1e71a8c1b3d4031adc786848b9 Mon Sep 17 00:00:00 2001 From: Panayot Cankov Date: Wed, 22 Feb 2017 15:09:48 +0200 Subject: [PATCH] The test was redesigned, but the lines resetting the text properties were missing --- apps/app/ui-tests-app/css/text-decoration.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/app/ui-tests-app/css/text-decoration.ts b/apps/app/ui-tests-app/css/text-decoration.ts index 443140781..0c1e1b2a3 100644 --- a/apps/app/ui-tests-app/css/text-decoration.ts +++ b/apps/app/ui-tests-app/css/text-decoration.ts @@ -22,4 +22,10 @@ export function butonTap(args: EventData) { btn.textDecoration = newValue; textField.textDecoration = newValue; textView.textDecoration = newValue; + + if(lbl.text === "Change text") { + lbl.text = btn.text = textField.text = textView.text = "Text changed"; + } else { + lbl.text = btn.text = textField.text = textView.text = "Change text"; + } }