From c20f01e2b8d657efb42b87a4b3edede8db6bbbf9 Mon Sep 17 00:00:00 2001 From: Laurin Quast Date: Tue, 20 May 2025 13:02:03 +0200 Subject: [PATCH] chore: add percentage value to assertion (#6808) --- integration-tests/tests/api/target/usage.spec.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/integration-tests/tests/api/target/usage.spec.ts b/integration-tests/tests/api/target/usage.spec.ts index aee98c0ae..2e2bfd5dd 100644 --- a/integration-tests/tests/api/target/usage.spec.ts +++ b/integration-tests/tests/api/target/usage.spec.ts @@ -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%', }, ]);