Skip to content

Commit

Permalink
step 8 test
Browse files Browse the repository at this point in the history
  • Loading branch information
Sudarshan-21 committed May 15, 2024
1 parent 6853468 commit 58ba5d5
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/step-03/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ test("Parse SQL Query", () => {
fields: ["id", "name"],
table: "student",
whereClauses: [],
joinCondition: null,
joinTable: null,
});
});

Expand Down
2 changes: 2 additions & 0 deletions tests/step-04/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ test("Parse SQL Query", () => {
fields: ["id", "name"],
table: "student",
whereClauses: [],
joinCondition: null,
joinTable: null,
});
});

Expand Down
4 changes: 4 additions & 0 deletions tests/step-05/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ test("Parse SQL Query", () => {
fields: ["id", "name"],
table: "student",
whereClauses: [],
joinCondition: null,
joinTable: null,
});
});

Expand All @@ -43,6 +45,8 @@ test("Parse SQL Query with WHERE Clause", () => {
value: "25",
},
],
joinCondition: null,
joinTable: null,
});
});

Expand Down
4 changes: 4 additions & 0 deletions tests/step-06/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ test("Parse SQL Query", () => {
fields: ["id", "name"],
table: "student",
whereClauses: [],
joinCondition: null,
joinTable: null,
});
});

Expand All @@ -43,6 +45,8 @@ test("Parse SQL Query with WHERE Clause", () => {
value: "25",
},
],
joinCondition: null,
joinTable: null,
});
});

Expand Down
4 changes: 4 additions & 0 deletions tests/step-07/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ test("Parse SQL Query", () => {
fields: ["id", "name"],
table: "student",
whereClauses: [],
joinCondition: null,
joinTable: null,
});
});

Expand All @@ -43,6 +45,8 @@ test("Parse SQL Query with WHERE Clause", () => {
value: "25",
},
],
joinCondition: null,
joinTable: null,
});
});

Expand Down

0 comments on commit 58ba5d5

Please sign in to comment.