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

189.1 Files compared

# Location File Last Modified
1 rdk.zip\rdk\product\production\rdk\src\write\pick-list\progressnotes progress-notes-titles-fetch-list-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-list-itest-spec.js Tue Oct 3 19:19:35 2017 UTC

189.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 68
Changed 2 12
Inserted 0 0
Removed 0 0

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

189.4 Active regular expressions

No regular expressions were active.

189.5 Comparison detail

  1   'use stric t';
  2  
  3   var fetch  = require( '../progre ssnotes/pr ogress-not es-titles- fetch-list ').fetch;
  4  
  5   var log =  sinon.stub (require(' bunyan').c reateLogge r({ name:  'progress- notes-titl es-fetch-l ist' }));
  6   //var log  = require( 'bunyan'). createLogg er({ name:  'progress -notes-tit les-fetch- list' });  //Uncommen t this lin e (and com ment above ) to see o utput in I ntelliJ co nsole
  7  
  8   var config uration =  {
  9       enviro nment: 'de velopment' ,
  10       contex t: 'HMP UI  CONTEXT',
  11         host: ' IP          ',
  12         port:  PORT ,
  13         accessCode : ' REDACT ',
  14         verifyCode : ' REDACTED ',
  15         localIP: ' IP        ',
  16       localA ddress: 'l ocalhost',
  17       vxSync Server: {
  18             baseUrl: ' http:// IP             '
  19       }
  20   };
  21  
  22   describe(' progress-n otes-title s resource  integrati on test',  function()  {
  23       it('fe tch RPC an d filter w ith ASU wo rks', func tion(done)  {
  24           th is.timeout (120000);
  25           fe tch(log, c onfigurati on, functi on(err, re sult) {
  26                expect(e rr).to.be. null();
  27                expect(r esult).to. be.truthy( );
  28                done();
  29           },  {class: ' 3', userCl assUid: 'u rn:va:asu- class:9E7A :561', rol eNames: 'A UTHOR/DICT ATOR,EXPEC TED SIGNER ,EXPECTED  COSIGNER,A TTENDING P HYSICIAN',  docStatus : 'COMPLET ED', actio nNames: 'V IEW,EDIT R ECORD,PRIN T RECORD',  site: '9E 7A'});
  30       });
  31  
  32       it('fe tch RPC wo rks', func tion(done)  {
  33           th is.timeout (120000);
  34           fe tch(log, c onfigurati on, functi on(err, re sult) {
  35                expect(e rr).to.be. null();
  36                expect(r esult).to. be.truthy( );
  37                done();
  38           }) ;
  39       });
  40   });