188. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/4/2017 8:04:38 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.

188.1 Files compared

# Location File Last Modified
1 rdk.zip\rdk\product\production\rdk\src\write\pick-list\progressnotes progress-notes-titles-fetch-flags-itest-spec.js Mon Aug 21 12:51:00 2017 UTC
2 rdk.zip\rdk\product\production\rdk\src\write\pick-list\progressnotes progress-notes-titles-fetch-flags-itest-spec.js Tue Oct 3 19:19:25 2017 UTC

188.2 Comparison summary

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

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

188.4 Active regular expressions

No regular expressions were active.

188.5 Comparison detail

  1   'use stric t';
  2  
  3   var fetch  = require( '../progre ssnotes/pr ogress-not es-titles- fetch-flag s').fetch;
  4  
  5   var log =  sinon.stub (require(' bunyan').c reateLogge r({ name:  'progress- notes-titl es-fetch-f lags' }));
  6  
  7   var config uration =  {
  8       enviro nment: 'de velopment' ,
  9       contex t: 'OR CPR S GUI CHAR T',
  10         host: ' IP          ',
  11         port:  PORT ,
  12         accessCode : ' REDACT ',
  13         verifyCode : ' REDACTED ',
  14         localIP: ' IP        ',
  15       localA ddress: 'l ocalhost'
  16   };
  17  
  18   describe(' progress-n ote-flags  resource i ntegration  test', fu nction() {
  19       it('ca n call the  RPCs to f etch the f lags', fun ction(done ) {
  20           th is.timeout (20000);
  21           fe tch(log, c onfigurati on, functi on(err, re sult) {
  22                expect(e rr).to.be. falsy();
  23                expect(r esult).to. be.truthy( );
  24  
  25                expect(r esult.isSu rgeryNote) .to.exist( );
  26                expect(r esult.isSu rgeryNote) .to.eql(fa lse);
  27  
  28                expect(r esult.isOn eVisitNote ).to.exist ();
  29                expect(r esult.isOn eVisitNote ).to.eql(f alse);
  30  
  31                expect(r esult.isPr fNote).to. exist();
  32                expect(r esult.isPr fNote).to. eql(true);
  33  
  34                expect(r esult.isCo nsultNote) .to.exist( );
  35                expect(r esult.isCo nsultNote) .to.eql(fa lse);
  36  
  37                done();
  38           },  {ien: '13 54'});
  39       });
  40   });