50931. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/27/2018 3:29:38 PM 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.

50931.1 Files compared

# Location File Last Modified
1 v2.0_Sprint_15_Build_5.zip\v2.0_Sprint_15_Build_5\Unredacted\ARS_Frontend\ars-app karma.conf.js Tue Apr 24 14:38:28 2018 UTC
2 v2.0_Sprint_15_Build_5..zip\v2.0_Sprint_15_Build_5\Unredacted\ARS_Frontend\ars-app karma.conf.js Thu Apr 26 16:49:12 2018 UTC

50931.2 Comparison summary

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

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

50931.4 Active regular expressions

No regular expressions were active.

50931.5 Comparison detail

  1   // Karma c onfigurati on file, s ee link fo r more inf ormation
  2   // https:/ /karma-run ner.github .io/1.0/co nfig/confi guration-f ile.html
  3  
  4   module.exp orts = fun ction(conf ig) {
  5     config.s et({
  6       basePa th: '',
  7       framew orks: ['ja smine', '@ angular/cl i'],
  8       plugin s: [
  9         requ ire('karma -jasmine') ,
  10         //re quire('kar ma-IE-laun cher'),
  11         requ ire('karma -chrome-la uncher'),
  12         requ ire('karma -jasmine-h tml-report er'),
  13         requ ire('karma -coverage- istanbul-r eporter'),
  14         requ ire('karma -junit-rep orter'),
  15         requ ire('karma -coverage' ),
  16         requ ire('karma -jenkins-r eporter'),
  17         requ ire('@angu lar/cli/pl ugins/karm a')
  18       ],
  19       client : {
  20         clea rContext:  false // l eave Jasmi ne Spec Ru nner outpu t visible  in browser
  21       },
  22       covera geIstanbul Reporter:  {
  23         repo rts: ['htm l', 'lcovo nly'],
  24         fixW ebpackSour cePaths: t rue
  25       },
  26       angula rCli: {
  27         //en vironment:  'dev'
  28         envi ronment: ' ci'
  29       },
  30       report ers: ['pro gress', 'k jhtml', 'j unit', 'co verage'],
  31       port:  9876,
  32       colors : true,
  33       logLev el: config .LOG_INFO,
  34       autoWa tch: false ,
  35       browse rs: ['Chro meHeadless '],
  36       single Run: false ,
  37       junitR eporter     : {
  38           ou tputDir :  'target/su refire-rep orts/'
  39       },
  40       covera geReporter  : {
  41           ty pe : 'cobe rtura',
  42           di r  : 'targ et/coverag e-reports/ '
  43       },
  44       custom Launchers:  {
  45              ChromeHead less: {
  46                base: 'C hrome',
  47                flags: [
  48                  '--hea dless',
  49                  '--dis able-gpu',
  50                  // Wit hout a rem ote debugg ing port,  Google Chr ome exits  immediatel y.
  51                    '--remote- debugging- port= PORT ',
  52                ],
  53              }
  54           }
  55     });
  56   };