We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3503c1e commit 6457a90Copy full SHA for 6457a90
packages/csv-parse/test/api.types.ts
@@ -102,27 +102,6 @@ describe("API Types", function () {
102
});
103
104
105
- describe("sync api", function () {
106
- it("respect parse signature", function () {
107
- // No argument
108
- parse_sync("");
109
- parse_sync("", {});
110
- parse_sync(Buffer.from(""));
111
- parse_sync(Buffer.from(""), {});
112
- });
113
-
114
- it("return records", function () {
115
- try {
116
- const records: object = parse_sync("");
117
- typeof records;
118
- } catch (err) {
119
- if (err instanceof CsvError) {
120
- err.message;
121
- }
122
123
124
125
126
describe("Info", function () {
127
const fakeinfo = {
128
bytes: 1,
0 commit comments