From c95fa18967a481e57c9f725778f9cb917e99278e 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 7b6acd310a..51ebcea993 100644 --- a/tests/configs/parsing_test.conf +++ b/tests/configs/parsing_test.conf @@ -430,3 +430,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; +})