Skip to content

Commit

Permalink
step 9 test
Browse files Browse the repository at this point in the history
  • Loading branch information
Sudarshan-21 committed May 15, 2024
1 parent 5e2fbba commit f5cf3ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/step-04/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const executeSELECTQuery = require("../../src/index");
test("Read CSV File", async () => {
const data = await readCSV("./student.csv");
expect(data.length).toBeGreaterThan(0);
expect(data.length).toBe(3);
expect(data.length).toBe(4);
expect(data[0].name).toBe("John");
expect(data[0].age).toBe("30"); //ignore the string type here, we will fix this later
});
Expand Down

0 comments on commit f5cf3ce

Please sign in to comment.