Merge pull request #1309 from strongloop/skipped-test

Unskip test case
This commit is contained in:
Loay 2017-04-13 14:14:54 -04:00 committed by GitHub
commit 8865659a8a
1 changed files with 6 additions and 1 deletions

View File

@ -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'},