We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50f3c5f commit e48a6c4Copy full SHA for e48a6c4
client/src/__tests__/unit-tests/driver/scanner.test.ts
@@ -73,6 +73,11 @@ describe('BitBakeProjectScanner', () => {
73
jest.clearAllMocks()
74
}, BITBAKE_TIMEOUT)
75
76
+ it('can get the bitbake version', async () => {
77
+ const version = bitBakeProjectScanner.scanResult._bitbakeVersion
78
+ expect(version).toMatch(/^[\d.]+$/);
79
+ })
80
+
81
it('can get a list of layers', async () => {
82
const layers = bitBakeProjectScanner.scanResult._layers
83
// poky provides the "core", "yocto" and "yoctobsp" layers
0 commit comments