Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
avermeil committed Mar 21, 2024
1 parent e8a3074 commit d9ca0ba
Show file tree
Hide file tree
Showing 3 changed files with 772 additions and 380 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "google-ads-api",
"version": "16.0.0-rest-beta1",
"version": "16.0.0-rest-beta3",
"description": "Google Ads API Client Library for Node.js",
"repository": "https://github.com/Opteo/google-ads-api",
"main": "build/src/index.js",
Expand Down Expand Up @@ -38,11 +38,11 @@
"axios-mock-adapter": "^1.22.0",
"esbuild": "^0.20.1",
"eslint": "^7.14.0",
"jest": "^29.0.3",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"pluralize": "^8.0.0",
"protobufjs": "^7.2.6",
"ts-jest": "^29.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"keywords": [
Expand Down
4 changes: 0 additions & 4 deletions src/customer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,6 @@ describe("paginatedSearch", () => {

// @ts-expect-error private method
const { response } = await customer.paginatedSearch(mockGaqlQuery, {
// @ts-expect-error
return_total_results_count: false,
page_size: 1000,
});
Expand All @@ -360,7 +359,6 @@ describe("paginatedSearch", () => {

// @ts-expect-error private method
const { response } = await customer.paginatedSearch(mockGaqlQuery, {
// @ts-expect-error
return_total_results_count: false,
page_size: 1000,
});
Expand All @@ -381,7 +379,6 @@ describe("paginatedSearch", () => {

// @ts-expect-error private method
const { response } = await customer.paginatedSearch(mockGaqlQuery, {
// @ts-expect-error
return_total_results_count: false,
page_size: 1000,
});
Expand All @@ -402,7 +399,6 @@ describe("paginatedSearch", () => {
const { totalResultsCount } = await customer.paginatedSearch(
mockGaqlQuery,
{
// @ts-expect-error
return_total_results_count: true,
page_size: 1000,
}
Expand Down
Loading

0 comments on commit d9ca0ba

Please sign in to comment.