Skip to content

Commit

Permalink
chore: Test Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rrr523 committed Nov 30, 2023
1 parent 3f620f6 commit bf3debe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/js-sdk/tests/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function generateString(length: number) {

export const getSps = async () => {
const sps = await client.sp.getStorageProviders();
const finalSps = (sps ?? []).filter((v: any) => v?.description?.moniker !== 'QATest');
const finalSps = (sps ?? []).filter((v) => v.endpoint.includes('nodereal'));

return finalSps;
};
Expand Down

0 comments on commit bf3debe

Please sign in to comment.