mirror of
https://github.com/lana-k/sqliteviz.git
synced 2025-12-07 10:38:54 +08:00
format
This commit is contained in:
@@ -19,8 +19,9 @@ describe('_statements.js', () => {
|
||||
|
||||
it('getInsertStmt', () => {
|
||||
const columns = ['id', 'name']
|
||||
expect(stmts.getInsertStmt('foo', columns))
|
||||
.to.equal('INSERT INTO "foo" ("id", "name") VALUES (?, ?);')
|
||||
expect(stmts.getInsertStmt('foo', columns)).to.equal(
|
||||
'INSERT INTO "foo" ("id", "name") VALUES (?, ?);'
|
||||
)
|
||||
})
|
||||
|
||||
it('getCreateStatement', () => {
|
||||
|
||||
Reference in New Issue
Block a user