chore: add percentage value to assertion (#6808)

This commit is contained in:
Laurin Quast 2025-05-20 13:02:03 +02:00 committed by GitHub
parent cdc4bbd112
commit c20f01e2b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2185,11 +2185,13 @@ const SubscriptionSchemaCheckQuery = graphql(/* GraphQL */ `
hash
name
countFormatted
percentage
percentageFormatted
}
topAffectedClients {
name
countFormatted
percentage
percentageFormatted
}
}
@ -2893,6 +2895,7 @@ test.concurrent(
countFormatted: '1',
hash: 'c1bbc8385a4a6f4e4988be7394800adc',
name: 'anonymous',
percentage: 100,
percentageFormatted: '100.00%',
},
]);
@ -2900,6 +2903,7 @@ test.concurrent(
{
countFormatted: '1',
name: 'integration-tests',
percentage: 100,
percentageFormatted: '100.00%',
},
]);