From 4ae339cc5cd548198625ed0f3c8a8d910afa6a94 Mon Sep 17 00:00:00 2001 From: enlineawork Date: Wed, 9 Sep 2026 11:04:38 -0300 Subject: [PATCH] test(f6): advance Android installable cut contract --- api-v3/test/unit/f5-android-test-cut.test.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/api-v3/test/unit/f5-android-test-cut.test.ts b/api-v3/test/unit/f5-android-test-cut.test.ts index 3eab7d9..1a89ff6 100644 --- a/api-v3/test/unit/f5-android-test-cut.test.ts +++ b/api-v3/test/unit/f5-android-test-cut.test.ts @@ -7,16 +7,16 @@ function mountedRepoFile(path: string): string { return readFileSync(resolve(process.cwd(), '..', path), 'utf8'); } -test('F5 Android test cut targets production API and has a distinct installable debug version', () => { +test('F6 Android test cut targets production API and has a distinct installable debug version', () => { const gradle = mountedRepoFile('android-app/app/build.gradle.kts'); - assert.match(gradle, /versionCode = 20/); - assert.match(gradle, /versionName = "0\.13\.0"/); + assert.match(gradle, /versionCode = 21/); + assert.match(gradle, /versionName = "0\.14\.0"/); assert.match(gradle, /https:\/\/dhv2\.korexlabs\.com\/api\/v3\//); assert.match(gradle, /applicationIdSuffix = "\.debug"/); }); -test('F5 field inventory exposes Other families as reviewable choices to Android', () => { +test('F5/F6 field inventory exposes Other families as reviewable choices to Android', () => { const service = readFileSync( resolve(process.cwd(), 'src/inspection-visits/f3-field-inventory-structure.service.ts'), 'utf8', @@ -25,4 +25,4 @@ test('F5 field inventory exposes Other families as reviewable choices to Android assert.match(service, /F5:SYSTEM:OTHER:%/); assert.match(service, /AS "isOther"/); assert.match(service, /isOtherFamily: family\.isOther/); -}); +}); \ No newline at end of file