1
0
mirror of https://github.com/badges/shields.git synced 2025-04-18 19:44:04 +03:00

Fix branch in [Bitrise] tests (#10439)

This commit is contained in:
Pierre-Yves Bigourdan 2024-08-04 07:50:44 +02:00 committed by GitHub
parent 4e8c75d0f4
commit 1a09e9a30b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ export default class Bitrise extends BaseJsonService {
}),
pathParam({
name: 'branch',
example: 'master',
example: 'develop',
}),
queryParam({
name: 'token',

View File

@ -10,7 +10,7 @@ t.create('deploy status')
})
t.create('deploy status with branch')
.get('/e736852157296019/master.json?token=vhgAmaiF3tWZoQyFLkKM7g')
.get('/e736852157296019/develop.json?token=vhgAmaiF3tWZoQyFLkKM7g')
.expectBadge({
label: 'bitrise',
message: isBuildStatus,
@ -25,5 +25,5 @@ t.create('invalid token')
.expectBadge({ label: 'bitrise', message: 'app not found or invalid token' })
t.create('invalid App ID')
.get('/invalid/master.json?token=vhgAmaiF3tWZoQyFLkKM7g')
.get('/invalid/develop.json?token=vhgAmaiF3tWZoQyFLkKM7g')
.expectBadge({ label: 'bitrise', message: 'app not found or invalid token' })