chore: set codecov commit status threshold (#623)
* chore: set codecov commit status threshold * Test new code doesn't fail threshold * Turn off patch status * Undo test threshold code
This commit is contained in:
parent
c30b88d48a
commit
514609708d
12
.codecov.yml
Normal file
12
.codecov.yml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# ABOUT:
|
||||||
|
# https://docs.codecov.io/docs/codecov-yaml
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# COMMIT STATUS:
|
||||||
|
# https://docs.codecov.io/docs/commit-status
|
||||||
|
coverage:
|
||||||
|
status:
|
||||||
|
project:
|
||||||
|
default:
|
||||||
|
threshold: 0.10%
|
||||||
|
patch: off
|
||||||
@ -1,4 +1,8 @@
|
|||||||
import './config';
|
import './config';
|
||||||
|
// Imported flat feature since is not transpiled for old browser versions
|
||||||
|
import 'core-js/features/array/flat';
|
||||||
|
import 'core-js/stable';
|
||||||
|
import 'regenerator-runtime/runtime';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
CommandsManager,
|
CommandsManager,
|
||||||
@ -29,10 +33,6 @@ import { getActiveContexts } from './store/layout/selectors.js';
|
|||||||
import i18n from '@ohif/i18n';
|
import i18n from '@ohif/i18n';
|
||||||
import setupTools from './setupTools';
|
import setupTools from './setupTools';
|
||||||
import store from './store';
|
import store from './store';
|
||||||
// Imported flat feature since is not transpiled for old browser versions
|
|
||||||
import 'core-js/features/array/flat';
|
|
||||||
import 'core-js/stable';
|
|
||||||
import 'regenerator-runtime/runtime';
|
|
||||||
|
|
||||||
// ~~~~ APP SETUP
|
// ~~~~ APP SETUP
|
||||||
const commandsManagerConfig = {
|
const commandsManagerConfig = {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user