1229. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/13/2018 7:48:00 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.

1229.1 Files compared

# Location File Last Modified
1 TASCore_v1.0_Build_2_Jan_2018.zip\MCCF_EDI_TAS_WebUI karma.conf.js Thu Feb 15 20:35:26 2018 UTC
2 TASCore_v1.0_Build_2_Jan_2018.zip\MCCF_EDI_TAS_WebUI karma.conf.js Fri Mar 9 17:09:20 2018 UTC

1229.2 Comparison summary

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

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

1229.4 Active regular expressions

No regular expressions were active.

1229.5 Comparison detail

  1   // Karma c onfigurati on file, s ee link fo r more inf ormation
  2   // https:/ /karma-run ner.github .io/0.13/c onfig/conf iguration- file.html
  3  
  4   module.exp orts = fun ction (con fig) {
  5     config.s et({
  6       basePa th: '',
  7       framew orks: ['ja smine', '@ angular/cl i'],
  8       plugin s: [
  9         requ ire('karma -jasmine') ,
  10         requ ire('karma -chrome-la uncher'),
  11         requ ire('karma -phantomjs -launcher' ),
  12         requ ire('karma -verbose-r eporter'),
  13         requ ire('karma -jasmine-h tml-report er'),
  14         requ ire('karma -html-repo rter'),
  15         requ ire('karma -coverage- istanbul-r eporter'),
  16         requ ire('@angu lar/cli/pl ugins/karm a')
  17       ],
  18       client : {
  19         clea rContext:  false // l eave Jasmi ne Spec Ru nner outpu t visible  in browser
  20       },
  21       covera geIstanbul Reporter:  {
  22         repo rts: ['htm l', 'lcovo nly'],
  23         fixW ebpackSour cePaths: t rue
  24       },
  25       angula rCli: {
  26         envi ronment: ' dev'
  27       },
  28       custom Launchers:  {
  29         Cust omHeadless Chrome: {
  30           ba se: 'Chrom e',
  31             flags: ["- -headless" , "--disab le-gpu", ' --remote-d ebugging-p ort= PORT ',]
  32         }
  33       },
  34       report ers: ['ver bose', 'pr ogress', ' kjhtml', ' html'],
  35       port:  9876,
  36       htmlRe porter: {
  37         "out putDir": " .", // whe re to put  the report s
  38         "tem platePath" : null, //  set if yo u moved ja smine_temp late.html
  39         "foc usOnFailur es": true,  // report s show fai lures on s tart
  40         "nam edFiles":  true, // n ame files  instead of  creating  sub-direct ories
  41         "pag eTitle": " unit_test_ results",  // page ti tle for re ports; bro wser info  by default
  42         "url FriendlyNa me": false , // simpl y replaces  spaces wi th _ for f iles/dirs
  43         "rep ortName":  "unit_test _report_su mmary" //  report sum mary filen ame; brows er info by  default
  44       },
  45       colors : true,
  46       logLev el: config .LOG_INFO,
  47       autoWa tch: true,
  48       browse rs: ['Phan tomJS'], / / also ava ilable: Cu stomHeadle ssChrome
  49       browse rDisconnec tTolerance : 3,
  50       browse rNoActivit yTimeout:  60000,
  51       single Run: true
  52     });
  53   };