We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 735190c commit 92ba7fbCopy full SHA for 92ba7fb
test/unit/base.test.js
@@ -1287,8 +1287,7 @@ describe('CONVERT FUNCTION TESTS ', function() {
1287
expect(conversionResult.output[0].data).to.have.property('info');
1288
expect(conversionResult.output[0].data).to.have.property('item');
1289
expect(conversionResult.output[0].data.item.length).to.equal(2);
1290
- expect(_.map(conversionResult.output[0].data.item, 'name')).to.include('pets');
1291
- expect(_.map(conversionResult.output[0].data.item, 'name')).to.include('pet/{petId}');
+ expect(_.map(conversionResult.output[0].data.item, 'name')).to.include.members(['pets', 'pet/{petId}']);
1292
done();
1293
});
1294
0 commit comments