File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -177,9 +177,8 @@ describe.each( [
177
177
178
178
. then ( ( posts ) => {
179
179
expect ( Array . isArray ( posts ) ) . toBe ( true ) ;
180
- // @TODO : re-enable once PPP support is merged
181
- // expect( posts.length ).toBe( 10 );
182
- // expect( getTitles( posts ) ).toEqual( expectedResults.titles.page2 );
180
+ expect ( posts . length ) . toBe ( 10 ) ;
181
+ expect ( getTitles ( posts ) ) . toEqual ( expectedResults . titles . page2 ) ;
183
182
return SUCCESS ;
184
183
} ) ;
185
184
return expect ( prom ) . resolves . toBe ( SUCCESS ) ;
@@ -221,8 +220,7 @@ describe.each( [
221
220
. page ( 2 )
222
221
. get ( )
223
222
. then ( ( posts ) => {
224
- // @TODO : re-enable once PPP support is merged
225
- // expect( getTitles( posts ) ).toEqual( expectedResults.titles.page2 );
223
+ expect ( getTitles ( posts ) ) . toEqual ( expectedResults . titles . page2 ) ;
226
224
return posts . _paging . prev
227
225
. get ( )
228
226
. then ( ( posts ) => {
You can’t perform that action at this time.
0 commit comments