diff --git a/integration-tests/src/tests/bitbake-commands.test.ts b/integration-tests/src/tests/bitbake-commands.test.ts index af2a05aa..f6fb6322 100644 --- a/integration-tests/src/tests/bitbake-commands.test.ts +++ b/integration-tests/src/tests/bitbake-commands.test.ts @@ -27,7 +27,7 @@ suite('Bitbake Commands Test Suite', () => { test('Bitbake can run a task', async () => { await vscode.commands.executeCommand('bitbake.run-task', 'base-files', 'unpack') await assertWillComeTrue(async () => { - const files = await vscode.workspace.findFiles('build/tmp/work/*/base-files/*/issue') + const files = await vscode.workspace.findFiles('build/tmp/work/*/base-files/*/sources/issue') return files.length === 1 }) }).timeout(BITBAKE_TIMEOUT) diff --git a/integration-tests/src/tests/command-wrapper.test.ts b/integration-tests/src/tests/command-wrapper.test.ts index 09ef3d7b..fd278822 100644 --- a/integration-tests/src/tests/command-wrapper.test.ts +++ b/integration-tests/src/tests/command-wrapper.test.ts @@ -56,7 +56,7 @@ suite('Bitbake Command Wrapper', () => { test('Bitbake can run a task inside a crops container', async () => { await vscode.commands.executeCommand('bitbake.run-task', 'base-files', 'unpack') await assertWillComeTrue(async () => { - const files = await vscode.workspace.findFiles('build-crops/tmp/work/*/base-files/*/issue') + const files = await vscode.workspace.findFiles('build-crops/tmp/work/*/base-files/*/sources/issue') return files.length === 1 }) }).timeout(BITBAKE_TIMEOUT)