Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
clemiller committed Aug 26, 2022
2 parents e621990 + dbba923 commit 7c166ee
Show file tree
Hide file tree
Showing 32 changed files with 18,536 additions and 2,233 deletions.
12 changes: 0 additions & 12 deletions .github/dependabot.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/buildcheck.yml

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
The creation of the tag can be disabled with the --no-git-tag-version if desired.
-->

# v4.6.6 - 26 August 2022

## Fixes
- Fixed an issue where the sorting selection was not honored for sub-techniques when rendered as an SVG. See issue [#494](https://github.com/mitre-attack/attack-navigator/issues/494).

# v4.6.5 - 7 July 2022

Adds support for ATT&CK v11.3 and Mobile ATT&CK sub-techniques.
Expand Down
32 changes: 26 additions & 6 deletions nav-app/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ module.exports = function (config) {
basePath: '',
frameworks: ['jasmine', '@angular-devkit/build-angular'],
plugins: [
require('karma-jasmine'),
require('@angular-devkit/build-angular/plugins/karma'),
require('karma-chrome-launcher'),
require('karma-coverage'),
// require('karma-coverage-istanbul-reporter'),
require('karma-jasmine'),
require('karma-jasmine-html-reporter'),
require('karma-coverage-istanbul-reporter'),
require('@angular-devkit/build-angular/plugins/karma')
],
client:{
clearContext: false // leave Jasmine Spec Runner output visible in browser
Expand All @@ -20,13 +21,32 @@ module.exports = function (config) {
fixWebpackSourcePaths: true
},

reporters: ['progress', 'kjhtml'],
reporters: ['progress', 'kjhtml', 'coverage'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
browsers: ['Chrome', 'ChromeHeadlessCI'],
customLaunchers: {
ChromeHeadlessCI: {
base: 'ChromeHeadless',
flags: ['--no-sandbox']
}
},
singleRun: false,
webpack: { node: { fs: 'empty', } } //https://github.com/angular/angular-cli/issues/8357
webpack: { node: { fs: 'empty', } }, // https://github.com/angular/angular-cli/issues/8357

// For code coverage
files: [
'src/**/*.ts'
],
preprocessors: {
'src/**/*.js': ['coverage']
},
coverageReporter: {
type : 'html',
dir : 'coverage/'
}

});
};
Loading

0 comments on commit 7c166ee

Please sign in to comment.