From d691cbb7aea9b66f9286cd332c1a33bc80b7a5d6 Mon Sep 17 00:00:00 2001 From: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com> Date: Tue, 23 Sep 2025 20:27:41 +0200 Subject: [PATCH] chore: CI fix format --- tests/integration/profiles/roo-files-inclusion.test.js | 8 ++------ tests/integration/profiles/rules-files-inclusion.test.js | 8 ++------ 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/tests/integration/profiles/roo-files-inclusion.test.js b/tests/integration/profiles/roo-files-inclusion.test.js index aa30f443..9e267c30 100644 --- a/tests/integration/profiles/roo-files-inclusion.test.js +++ b/tests/integration/profiles/roo-files-inclusion.test.js @@ -103,14 +103,10 @@ describe('Roo Files Inclusion in Package', () => { test('source Roo files exist in assets directory', () => { // Verify that the source files for Roo integration exist expect( - fs.existsSync( - path.join(process.cwd(), 'assets', 'roocode', '.roo') - ) + fs.existsSync(path.join(process.cwd(), 'assets', 'roocode', '.roo')) ).toBe(true); expect( - fs.existsSync( - path.join(process.cwd(), 'assets', 'roocode', '.roomodes') - ) + fs.existsSync(path.join(process.cwd(), 'assets', 'roocode', '.roomodes')) ).toBe(true); }); }); diff --git a/tests/integration/profiles/rules-files-inclusion.test.js b/tests/integration/profiles/rules-files-inclusion.test.js index 2ec56e4a..8b5fc5a9 100644 --- a/tests/integration/profiles/rules-files-inclusion.test.js +++ b/tests/integration/profiles/rules-files-inclusion.test.js @@ -89,14 +89,10 @@ describe('Rules Files Inclusion in Package', () => { test('source Roo files exist in assets directory', () => { // Verify that the source files for Roo integration exist expect( - fs.existsSync( - path.join(process.cwd(), 'assets', 'roocode', '.roo') - ) + fs.existsSync(path.join(process.cwd(), 'assets', 'roocode', '.roo')) ).toBe(true); expect( - fs.existsSync( - path.join(process.cwd(), 'assets', 'roocode', '.roomodes') - ) + fs.existsSync(path.join(process.cwd(), 'assets', 'roocode', '.roomodes')) ).toBe(true); }); });