137. 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.

137.1 Files compared

# Location File Last Modified
1 rdk.zip\rdk\product\production\rdk\src\write\pick-list\allergies allergies-symptoms-all-with-top-ten-fetch-list-itest-spec.js Mon Aug 21 12:51:00 2017 UTC
2 rdk.zip\rdk\product\production\rdk\src\write\pick-list\allergies allergies-symptoms-all-with-top-ten-fetch-list-itest-spec.js Tue Oct 3 19:08:00 2017 UTC

137.2 Comparison summary

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

137.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

137.4 Active regular expressions

No regular expressions were active.

137.5 Comparison detail

  1   'use stric t';
  2  
  3   var fetch  = require( './allergi es-symptom s-all-with -top-ten-f etch-list' ).fetch;
  4  
  5   var log =  sinon.stub (require(' bunyan').c reateLogge r({ name:  'allergies -symptoms- all-with-t op-ten' }) );
  6   //var log  = require( 'bunyan'). createLogg er({ name:  'allergie s-symptoms -all-with- top-ten' } ); //Uncom ment this  line (and  comment ab ove) to se e output i n IntelliJ  console
  7  
  8   var config uration =  {
  9       enviro nment: 'de velopment' ,
  10       contex t: 'OR CPR S GUI CHAR T',
  11         host: ' IP          ',
  12         port:  PORT ,
  13         accessCode : ' REDACT ',
  14         verifyCode : ' REDACTED ',
  15         localIP: ' IP        ',
  16       localA ddress: 'l ocalhost'
  17   };
  18  
  19  
  20   describe(' allergies- symptoms-a ll-with-to p-ten reso urce integ ration tes t', functi on() {
  21       it('ca n combine  the 2 endp oints', fu nction (do ne) {
  22           th is.timeout (200000);
  23  
  24           fe tch(log, c onfigurati on, functi on(err, re sult) {
  25                expect(e rr).to.be. falsy();
  26                expect(r esult).to. be.truthy( );
  27                expect(r esult.allS ymptoms).t o.be.truth y();
  28                expect(r esult.topT en).to.be. truthy();
  29                done();
  30           }) ;
  31       });
  32   });