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

142.1 Files compared

# Location File Last Modified
1 rdk.zip\rdk\product\production\rdk\src\write\pick-list\encounters encounters-procedure-types-fetch-list-itest-spec.js Mon Aug 21 12:51:00 2017 UTC
2 rdk.zip\rdk\product\production\rdk\src\write\pick-list\encounters encounters-procedure-types-fetch-list-itest-spec.js Tue Oct 3 19:09:46 2017 UTC

142.2 Comparison summary

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

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

142.4 Active regular expressions

No regular expressions were active.

142.5 Comparison detail

  1   'use stric t';
  2  
  3   var fetchL ist = requ ire('./enc ounters-pr ocedure-ty pes-fetch- list').fet ch;
  4  
  5   var log =  sinon.stub (require(' bunyan').c reateLogge r({ name:  'encounter s-procedur e-types-fe tch-list'  }));
  6   //var log  = require( 'bunyan'). createLogg er({ name:  'encounte rs-procedu re-types-f etch-list'  }); //Unc omment thi s line (an d comment  above) to  see output  in Intell iJ 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   describe(' encounters -procedure -types res ource inte gration te st', funct ion() {
  20       it('ca n call the  getEncoun tersProced ureTypes R PC', funct ion (done)  {
  21           th is.timeout (20000);
  22           fe tchList(lo g, configu ration, fu nction(err , result)  {
  23                expect(e rr).to.be. falsy();
  24                expect(r esult).to. be.truthy( );
  25                done();
  26           },  {location Uid: 'urn: va:locatio n:9E7A:195 ', visitDa te: '20131 001'});
  27       });
  28       it('wi ll return  an error i f location IEN is mis sing', fun ction (don e) {
  29           th is.timeout (8000);
  30           fe tchList(lo g, configu ration, fu nction (er r, result)  {
  31                expect(e rr).to.be. truthy();
  32                expect(r esult).to. be.falsy() ;
  33                done();
  34           },  {visitDat e: '201310 01'});
  35       });
  36       it('wi ll NOT ret urn an err or if visi tDate is m issing', f unction (d one) {
  37           th is.timeout (20000);
  38           fe tchList(lo g, configu ration, fu nction (er r, result)  {
  39                expect(e rr).to.be. falsy();
  40                expect(r esult).to. be.truthy( );
  41                done();
  42           },  {location Uid: 'urn: va:locatio n:9E7A:195 '});
  43       });
  44   });