Skip to content

Commit

Permalink
Add missing assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
jliuhtonen committed Sep 4, 2024
1 parent 5aa84dc commit d137f4a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/sql.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,15 @@ describe("sql", () => {
normalizeWhitespace(result.text),
"INSERT INTO company (name, address) VALUES ($1, $2), ($3, $4), ($5, $6), ($7, $8)",
)
assert.deepEqual(result.values, [
"Apple",
"1 Infinite Loop",
"Google",
"1600 Amphitheatre Parkway",
"Microsoft",
"One Microsoft Way",
"Amazon",
"410 Terry Ave. North",
])
})
})

0 comments on commit d137f4a

Please sign in to comment.