From b47c929a569f498bfbf74d453659bde17918f4d8 Mon Sep 17 00:00:00 2001 From: enlineawork Date: Thu, 10 Sep 2026 23:01:30 -0300 Subject: [PATCH] test(android): align test-cut version with field-flow release --- api-v3/test/unit/f5-android-test-cut.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 c094c2d..80a2c80 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('F6.1 Android test cut targets production API and has a distinct installable debug version', () => { +test('F6.3 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 = 24/); - assert.match(gradle, /versionName = "0\.15\.2"/); + assert.match(gradle, /versionCode = 25/); + assert.match(gradle, /versionName = "0\.16\.0"/); assert.match(gradle, /https:\/\/dhv2\.korexlabs\.com\/api\/v3\//); assert.match(gradle, /applicationIdSuffix = "\.debug"/); }); -test('F5/F6.1 field inventory exposes Other families as reviewable choices to Android', () => { +test('F5/F6.3 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',