Skip to content

Commit a02aaa3

Browse files
chore: remove logging
1 parent 29af640 commit a02aaa3

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

test/commands/api/request/graphql/graphql.nut.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
import { join } from 'node:path';
99
import fs from 'node:fs';
10-
import * as util from 'node:util';
1110
import { config, expect } from 'chai';
1211
import { execCmd, TestSession } from '@salesforce/cli-plugins-testkit';
1312

@@ -37,8 +36,6 @@ describe('api:request:graphql NUT', () => {
3736
it('get result in json format', () => {
3837
const result = execCmd(`api request graphql --body ${join(testSession.project.dir, 'standard.txt')}`).shellOutput
3938
.stdout;
40-
// eslint-disable-next-line no-console
41-
console.log('res', util.inspect(result));
4239

4340
// make sure we got a JSON object back
4441
const parsed = JSON.parse(result) as Record<string, unknown>;
@@ -53,8 +50,6 @@ describe('api:request:graphql NUT', () => {
5350
it('get no results correctly', () => {
5451
const result = execCmd(`api request graphql --body ${join(testSession.project.dir, 'noResults.txt')}`).shellOutput
5552
.stdout;
56-
// eslint-disable-next-line no-console
57-
console.log('res', util.inspect(result));
5853
// make sure we got a JSON object back
5954
const parsed = JSON.parse(result) as Record<string, unknown>;
6055
expect(Object.keys(parsed)).to.have.length;

0 commit comments

Comments
 (0)