Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ describe('Search with pagination', () => {
assert.match(stdout, /Search start/);
});

it('should contain next page token', () => {
// TODO(#4136): Re-enable this test. See https://github.com/GoogleCloudPlatform/nodejs-docs-samples/issues/4136
it.skip('should contain next page token', () => {
assert.match(stdout, /Next page token/);
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ describe('Search with query expansion spec', () => {
}
});

it('should contain expanded query', () => {
// TODO(#4136): Re-enable this test. See https://github.com/GoogleCloudPlatform/nodejs-docs-samples/issues/4136
it.skip('should contain expanded query', () => {
const searchResponse = response[IResponseParams.ISearchResponse];
expect(
searchResponse.queryExpansionInfo,
Expand Down
Loading