Skip to content

Commit 5dceafa

Browse files
chore(internal): codegen related update
1 parent 335d6ee commit 5dceafa

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tests/api-resources/health.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const client = new Xga({
88
});
99

1010
describe('resource health', () => {
11-
// skipped: tests are disabled for the time being
11+
// Prism tests are disabled
1212
test.skip('check', async () => {
1313
const responsePromise = client.health.check();
1414
const rawResponse = await responsePromise.asResponse();

tests/api-resources/rewards/v1/earners.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const client = new Xga({
88
});
99

1010
describe('resource earners', () => {
11-
// skipped: tests are disabled for the time being
11+
// Prism tests are disabled
1212
test.skip('getSummarizedRewards', async () => {
1313
const responsePromise = client.rewards.v1.earners.getSummarizedRewards('earner_address');
1414
const rawResponse = await responsePromise.asResponse();
@@ -20,7 +20,7 @@ describe('resource earners', () => {
2020
expect(dataAndResponse.response).toBe(rawResponse);
2121
});
2222

23-
// skipped: tests are disabled for the time being
23+
// Prism tests are disabled
2424
test.skip('getSummarizedRewards: request options and params are passed correctly', async () => {
2525
// ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error
2626
await expect(

tests/api-resources/rewards/v1/v1.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const client = new Xga({
88
});
99

1010
describe('resource v1', () => {
11-
// skipped: tests are disabled for the time being
11+
// Prism tests are disabled
1212
test.skip('generateClaimProof', async () => {
1313
const responsePromise = client.rewards.v1.generateClaimProof({});
1414
const rawResponse = await responsePromise.asResponse();
@@ -20,7 +20,7 @@ describe('resource v1', () => {
2020
expect(dataAndResponse.response).toBe(rawResponse);
2121
});
2222

23-
// skipped: tests are disabled for the time being
23+
// Prism tests are disabled
2424
test.skip('listDistributionRoots', async () => {
2525
const responsePromise = client.rewards.v1.listDistributionRoots();
2626
const rawResponse = await responsePromise.asResponse();

0 commit comments

Comments
 (0)