File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
static/gsAdmin/components/customers Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -367,7 +367,7 @@ describe('CustomerOverview', function () {
367
367
expect ( screen . queryByText ( 'Seer:' ) ) . not . toBeInTheDocument ( ) ;
368
368
} ) ;
369
369
370
- it ( 'renders no product trials for non-self-serve account' , function ( ) {
370
+ it ( 'renders product trials for non-self-serve account' , function ( ) {
371
371
const organization = OrganizationFixture ( ) ;
372
372
const enterprise_subscription = SubscriptionFixture ( {
373
373
organization,
@@ -384,12 +384,9 @@ describe('CustomerOverview', function () {
384
384
/>
385
385
) ;
386
386
387
- expect ( screen . queryByText ( 'Product Trials' ) ) . not . toBeInTheDocument ( ) ;
388
- expect ( screen . queryByText ( 'Replays:' ) ) . not . toBeInTheDocument ( ) ;
389
- expect ( screen . queryByText ( 'Spans:' ) ) . not . toBeInTheDocument ( ) ;
390
- expect ( screen . queryByText ( 'Performance Units:' ) ) . not . toBeInTheDocument ( ) ;
391
- expect ( screen . queryByText ( 'Transactions:' ) ) . not . toBeInTheDocument ( ) ;
392
- expect ( screen . queryByText ( 'Seer:' ) ) . not . toBeInTheDocument ( ) ;
387
+ expect ( screen . getByText ( 'Product Trials' ) ) . toBeInTheDocument ( ) ;
388
+ expect ( screen . getByText ( 'Spans:' ) ) . toBeInTheDocument ( ) ;
389
+ expect ( screen . getByText ( 'Seer:' ) ) . toBeInTheDocument ( ) ;
393
390
} ) ;
394
391
395
392
it ( 'render product trials for am1 account' , function ( ) {
You can’t perform that action at this time.
0 commit comments