From dda95382b5007fc96924b9e5b6daf7795d0f44c3 Mon Sep 17 00:00:00 2001 From: Yuxuan Shui Date: Thu, 9 May 2024 05:15:03 +0100 Subject: [PATCH] tests: add animations to base config parsing test Signed-off-by: Yuxuan Shui --- tests/configs/parsing_test.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/configs/parsing_test.conf b/tests/configs/parsing_test.conf index a3088680..f27cd9aa 100644 --- a/tests/configs/parsing_test.conf +++ b/tests/configs/parsing_test.conf @@ -423,3 +423,13 @@ window-shader-fg-rule = " shader.frag :name = 'a'", "default:name = 'b'" ] + +animations = ({ + triggers = ["close", "hide"]; + offset-y = { + timing = "0.2s linear"; + start = 0; + end = "- window-height - window-y"; + }; + opacity = 1; +})