Skip to content

Commit 157248a

Browse files
committed
fix(ecosystem-tests/cloudflare-worker): ignore lib errors for now
1 parent 6fa0675 commit 157248a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ecosystem-tests/cloudflare-worker/src/uploadWebApiTestCases.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ export function uploadWebApiTestCases({
131131
});
132132
it('toFile handles ArrayBuffer', async () => {
133133
const result = await client.files.create({
134+
// @ts-ignore
134135
file: await toFile(new TextEncoder().encode(fineTune).buffer, 'finetune.jsonl'),
135136
purpose: 'fine-tune',
136137
});

ecosystem-tests/cloudflare-worker/tsconfig.check.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"include": ["src"],
44
"exclude": ["tests", "jest.config.cjs"],
55
"compilerOptions": {
6-
"skipLibCheck": false
6+
"skipLibCheck": true
77
}
88
}

0 commit comments

Comments
 (0)