From 9dc5430652ae23fe79e26ad31127b1ac228eb09e Mon Sep 17 00:00:00 2001 From: Loay Date: Wed, 5 Apr 2017 14:09:10 -0400 Subject: [PATCH] Unskip test case --- test/manipulation.test.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/manipulation.test.js b/test/manipulation.test.js index 6c4b1d02..cc7e5d38 100644 --- a/test/manipulation.test.js +++ b/test/manipulation.test.js @@ -855,7 +855,12 @@ describe('manipulation', function() { }); }); - it.skip('updates specific instances when PK is not an auto-generated id', function(done) { + it('updates specific instances when PK is not an auto-generated id', function(done) { + // skip the test if the connector is mssql + // https://github.com/strongloop/loopback-connector-mssql/pull/92#r72853474 + var dsName = Post.dataSource.name; + if (dsName === 'mssql') return done(); + Post.create([ {title: 'postA', content: 'contentA'}, {title: 'postB', content: 'contentB'},