Skip to content

Commit 53a80a3

Browse files
committed
test(csv-parse): remove eslint warnings
1 parent 61fc933 commit 53a80a3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/csv-parse/test/api.types.sync.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,24 +102,28 @@ describe("API Types", function () {
102102
describe("Generic types", function () {
103103
it("Exposes string[][] if columns is not specified", function () {
104104
const data: string[][] = parse("", {});
105+
data;
105106
});
106107

107108
it("Exposes string[][] if columns is falsy", function () {
108109
const data: string[][] = parse("", {
109110
columns: false,
110111
});
112+
data;
111113
});
112114

113115
it("Exposes unknown[] if columns is specified as boolean", function () {
114116
const data: unknown[] = parse("", {
115117
columns: true,
116118
});
119+
data;
117120
});
118121

119122
it("Exposes T[] if columns is specified", function () {
120123
const data: Person[] = parse<Person>("", {
121124
columns: true,
122125
});
126+
data;
123127
});
124128
});
125129
});

0 commit comments

Comments
 (0)