Sync UI: Remove beta tags, and reveal sync client count billing tab (#25669)

* Revert "hide sync billing related details"

This reverts commit 26d24d9e789dc2378be5845f0e835978676fc9e6.

* Revert "add beta tags"

This reverts commit a9837bce0b2123ad3eb47f261f127fa166ddb1bc.

* final cleanup from remaining SYNC BETA comments

* fix line chart scale

* update sync copy

* update test
This commit is contained in:
claire bontempo
2024-02-28 09:53:24 -08:00
committed by GitHub
parent 382b5de5a0
commit 638f9ddae6
21 changed files with 62 additions and 106 deletions

View File

@@ -60,7 +60,7 @@ module('Integration | Component | clients/usage-stats', function (hooks) {
await render(hbs`<Clients::UsageStats @totalUsageCounts={{this.counts}} />`);
assert.dom('[data-test-stat-text]').exists({ count: 3 }, 'Renders 3 Stat texts'); // after SYNC BETA update to 4
assert.dom('[data-test-stat-text]').exists({ count: 4 }, 'Renders 3 Stat texts');
assert
.dom('[data-test-stat-text="total-clients"] .stat-value')
.hasText('22', 'Total clients shows passed value');
@@ -70,9 +70,8 @@ module('Integration | Component | clients/usage-stats', function (hooks) {
assert
.dom('[data-test-stat-text="non-entity-clients"] .stat-value')
.hasText('10', 'non entity clients shows passed value');
// * unavailable during SYNC BETA (1.16.0), planned for 1.16.1 release
// assert
// .dom('[data-test-stat-text="secret-syncs"] .stat-value')
// .hasText('5', 'secrets sync clients shows passed value');
assert
.dom('[data-test-stat-text="secret-syncs"] .stat-value')
.hasText('5', 'secrets sync clients shows passed value');
});
});