@@ -33,7 +33,7 @@ describe('AnalysisProgressStatus', () => {
3333
3434 it ( 'Allows cancellation' , async ( ) => {
3535 const store = await renderAnalysisProgressStatus ( ) ;
36- expect ( screen . getByText ( 'Sampling collections.. ' ) ) . to . be . visible ;
36+ expect ( screen . getByText ( 'Sampling collections… ' ) ) . to . be . visible ;
3737 expect ( screen . getByText ( 'Cancel' ) ) . to . be . visible ;
3838 screen . getByText ( 'Cancel' ) . click ( ) ;
3939 await waitFor ( ( ) => {
@@ -47,7 +47,7 @@ describe('AnalysisProgressStatus', () => {
4747 const store = await renderAnalysisProgressStatus ( {
4848 automaticallyInferRelations : false ,
4949 } ) ;
50- expect ( screen . getByText ( 'Sampling collections.. ' ) ) . to . be . visible ;
50+ expect ( screen . getByText ( 'Sampling collections… ' ) ) . to . be . visible ;
5151 expect ( screen . getByText ( '0/3' ) ) . to . be . visible ;
5252
5353 // 2 out of 3 samples fetched, 1 analyzed
@@ -61,15 +61,15 @@ describe('AnalysisProgressStatus', () => {
6161 type : AnalysisProcessActionTypes . NAMESPACE_SCHEMA_ANALYZED ,
6262 } ) ;
6363
64- expect ( screen . getByText ( 'Sampling collections.. ' ) ) . to . be . visible ;
64+ expect ( screen . getByText ( 'Sampling collections… ' ) ) . to . be . visible ;
6565 expect ( screen . getByText ( '2/3' ) ) . to . be . visible ;
6666
6767 // Last sample fetched
6868 store . dispatch ( {
6969 type : AnalysisProcessActionTypes . NAMESPACE_SAMPLE_FETCHED ,
7070 } ) ;
7171
72- expect ( screen . getByText ( 'Analyzing collection schemas.. ' ) ) . to . be . visible ;
72+ expect ( screen . getByText ( 'Analyzing collection schemas… ' ) ) . to . be . visible ;
7373 expect ( screen . getByText ( '1/3' ) ) . to . be . visible ;
7474
7575 // Finish analyzing
@@ -80,17 +80,16 @@ describe('AnalysisProgressStatus', () => {
8080 type : AnalysisProcessActionTypes . NAMESPACE_SCHEMA_ANALYZED ,
8181 } ) ;
8282
83- expect (
84- screen . queryByText ( 'Inferring relationships between collections..' )
85- ) . not . to . exist ;
86- expect ( screen . getByText ( 'Preparing diagram..' ) ) . to . be . visible ;
83+ expect ( screen . queryByText ( 'Inferring relationships between collections…' ) )
84+ . not . to . exist ;
85+ expect ( screen . getByText ( 'Preparing diagram…' ) ) . to . be . visible ;
8786 } ) ;
8887
8988 it ( 'With relationship inferring' , async ( ) => {
9089 const store = await renderAnalysisProgressStatus ( {
9190 automaticallyInferRelations : true ,
9291 } ) ;
93- expect ( screen . getByText ( 'Sampling collections.. ' ) ) . to . be . visible ;
92+ expect ( screen . getByText ( 'Sampling collections… ' ) ) . to . be . visible ;
9493 expect ( screen . getByText ( '0/3' ) ) . to . be . visible ;
9594
9695 // Fetch and analyze all samples
@@ -113,7 +112,7 @@ describe('AnalysisProgressStatus', () => {
113112 type : AnalysisProcessActionTypes . NAMESPACE_SCHEMA_ANALYZED ,
114113 } ) ;
115114
116- expect ( screen . getByText ( 'Inferring relationships between collections.. ' ) )
115+ expect ( screen . getByText ( 'Inferring relationships between collections… ' ) )
117116 . to . be . visible ;
118117 expect ( screen . queryByText ( '0/3' ) ) . not . to . exist ;
119118
@@ -125,7 +124,7 @@ describe('AnalysisProgressStatus', () => {
125124 type : AnalysisProcessActionTypes . NAMESPACE_RELATIONS_INFERRED ,
126125 } ) ;
127126
128- expect ( screen . getByText ( 'Inferring relationships between collections.. ' ) )
127+ expect ( screen . getByText ( 'Inferring relationships between collections… ' ) )
129128 . to . be . visible ;
130129 expect ( screen . queryByText ( '2/3' ) ) . not . to . exist ;
131130
@@ -134,7 +133,7 @@ describe('AnalysisProgressStatus', () => {
134133 type : AnalysisProcessActionTypes . NAMESPACE_RELATIONS_INFERRED ,
135134 } ) ;
136135
137- expect ( screen . getByText ( 'Preparing diagram.. ' ) ) . to . be . visible ;
136+ expect ( screen . getByText ( 'Preparing diagram… ' ) ) . to . be . visible ;
138137 } ) ;
139138 } ) ;
140139} ) ;
0 commit comments