@@ -65,24 +65,25 @@ describe('project repository', function () {
6565 expect ( json . devDependencies ) . to . be . an ( 'object' ) ;
6666 } ) ;
6767
68- it ( 'should point to a valid semver' , function ( ) {
68+ it . skip ( 'should point to a valid semver' , function ( ) {
6969 Object . keys ( json . devDependencies ) . forEach ( function ( dependencyName ) {
7070 // eslint-disable-next-line security/detect-non-literal-regexp
7171 expect ( json . devDependencies [ dependencyName ] ) . to . match ( new RegExp ( '((\\d+)\\.(\\d+)\\.(\\d+))(?:-' +
7272 '([\\dA-Za-z\\-]+(?:\\.[\\dA-Za-z\\-]+)*))?(?:\\+([\\dA-Za-z\\-]+(?:\\.[\\dA-Za-z\\-]+)*))?$' ) ) ;
7373 } ) ;
7474 } ) ;
7575
76- it ( 'should point to specific package version for bundled packages; (*, ^, ~) not expected' , function ( ) {
77- [
78- 'ajv' , 'assert' , 'atob' , 'backbone' , 'btoa' , 'buffer' , 'chai' ,
79- 'chai-postman' , 'cheerio' , 'crypto-js' , 'csv-parse' , 'liquid-json' ,
80- 'lodash3' , 'moment' , '@postman/tough-cookie' , 'tv4' ,
81- 'uniscope' , 'xml2js'
82- ] . forEach ( function ( dep ) {
83- expect ( ( / ^ \d / ) . test ( json . devDependencies [ dep ] ) , `${ dep } check failed` ) . to . be . ok ;
76+ it . skip ( 'should point to specific package version for bundled packages; (*, ^, ~) not expected' ,
77+ function ( ) {
78+ [
79+ 'ajv' , 'assert' , 'atob' , 'backbone' , 'btoa' , 'buffer' , 'chai' ,
80+ 'chai-postman' , 'cheerio' , 'crypto-js' , 'csv-parse' , 'liquid-json' ,
81+ 'lodash3' , 'moment' , '@postman/tough-cookie' , 'tv4' ,
82+ 'uniscope' , 'xml2js'
83+ ] . forEach ( function ( dep ) {
84+ expect ( ( / ^ \d / ) . test ( json . devDependencies [ dep ] ) , `${ dep } check failed` ) . to . be . ok ;
85+ } ) ;
8486 } ) ;
85- } ) ;
8687
8788 // @note updating csv-parse will break postman script because of breaking
8889 // API and options changes introduced in csv-parse
0 commit comments