Skip to content

Commit

Permalink
Test: Bitbake devtool-modify command
Browse files Browse the repository at this point in the history
  • Loading branch information
deribaucourt committed Dec 18, 2023
1 parent fcad828 commit 947012e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions integration-tests/src/tests/bitbake-commands.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,12 @@ suite('Bitbake Commands Test Suite', () => {
const files = await vscode.workspace.findFiles('build/tmp/work/*/base-files/*/temp/log.do_fetch')
assert.strictEqual(files.length, 1)
}).timeout(300000)

test('Bitbake can create a devtool modify workspace', async () => {
await vscode.commands.executeCommand('bitbake.devtool-modify', 'busybox')
await assertWillComeTrue(async () => {
const files = await vscode.workspace.findFiles('build/workspace/sources/busybox/README')
return files.length === 1
})
})
})

0 comments on commit 947012e

Please sign in to comment.