179. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/4/2017 8:04:37 AM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

179.1 Files compared

# Location File Last Modified
1 rdk.zip\rdk\product\production\rdk\src\write\pick-list\orderables enterprise-orderable-fetch-list-itest-spec.js Mon Aug 21 12:51:00 2017 UTC
2 rdk.zip\rdk\product\production\rdk\src\write\pick-list\orderables enterprise-orderable-fetch-list-itest-spec.js Tue Oct 3 17:21:05 2017 UTC

179.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 54
Changed 2 8
Inserted 0 0
Removed 0 0

179.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

179.4 Active regular expressions

No regular expressions were active.

179.5 Comparison detail

  1   /*global s inon, desc ribe, it * /
  2   'use stric t';
  3  
  4   var fetch  = require( './enterpr ise-ordera ble-fetch- list').fet ch;
  5  
  6   var log =  sinon.stub (require(' bunyan').c reateLogge r({ name:  'enterpris e-orderabl e-fetch-li st' }));
  7   //var log  = require( 'bunyan'). createLogg er({ name:  'enterpri se-orderab le-fetch-l ist' }); / /Uncomment  this line  (and comm ent above)  to see ou tput in In telliJ con sole
  8  
  9   var config uration =  {
  10       enviro nment: 'de velopment' ,
  11       contex t: 'OR CPR S GUI CHAR T',
  12       genera lPurposeJd sServer: {
  13             baseUrl: ' http:// IP                '
  14       },
  15         accessCode : ' REDACT ',
  16         verifyCode : ' REDACTED ',
  17         localIP: ' IP        ',
  18       localA ddress: 'l ocalhost'
  19   };
  20  
  21   describe(' enterprise  orderable  resource  integratio n test', f unction()  {
  22       it('ca n call the  fetch fun ction', fu nction (do ne) {
  23           th is.timeout (20000);
  24  
  25           fe tch(log, c onfigurati on, functi on(err, re sult) {
  26                expect(e rr).to.be. falsy();
  27                expect(r esult).to. be.truthy( );
  28                done();
  29           },  {'userId' : 'userUid '});
  30       });
  31   });