We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d76b3f commit 2a215bcCopy full SHA for 2a215bc
1 file changed
test/upsert.test.js
@@ -8,7 +8,7 @@ describe('query properties', function() {
8
db.run("CREATE TABLE foo (id INT PRIMARY KEY, count INT)", done);
9
});
10
11
- it('should upsert', function(done) {
+ (sqlite3.VERSION_NUMBER < 3024000 ? it.skip : it)('should upsert', function(done) {
12
var stmt = db.prepare("INSERT INTO foo VALUES(?, ?)");
13
stmt.run(1, 1, function(err) { // insert 1
14
if (err) throw err;
0 commit comments