From 661438138caf839073b9e9b400c1b793428c53be Mon Sep 17 00:00:00 2001 From: BibaBot Date: Wed, 18 Mar 2026 19:06:37 +0000 Subject: [PATCH] feat: add issue for installing missing system dependency for Playwright tests --- ISSUE-007.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ISSUE-007.md diff --git a/ISSUE-007.md b/ISSUE-007.md new file mode 100644 index 0000000..49e9ab1 --- /dev/null +++ b/ISSUE-007.md @@ -0,0 +1,17 @@ +# Install missing system dependency for Playwright tests + +## Description +The integration tests are failing because the required system library `libatk-1.0.so.0` is not installed on the system. This library is needed for the Playwright browser automation to work properly in headless mode. + +## Acceptance Criteria +- [ ] Install the missing `libatk1.0-0` package using apt-get +- [ ] Verify that the Playwright tests can now run successfully +- [ ] Update documentation to reflect this dependency + +## Tasks +1. Install `libatk1.0-0` package +2. Run integration tests to verify they pass +3. Document the dependency in README or STATUS.md + +## Notes +This is a simple system dependency issue that blocks the automated testing workflow. \ No newline at end of file