github
1349 of 1526 branches covered (88.4%)
Branch coverage included in aggregate %.
12 of 849 new or added lines in 21 files covered. (1.41%)
10 existing lines in 1 file now uncovered.5324 of 9354 relevant lines covered (56.92%)
32.18 hits per line
1 |
import { ConfigBase } from './utils/config'; |
× |
2 |
import type { InitConfig } from './types/harmony'; |
× |
3 |
|
× |
4 |
export class Config extends ConfigBase<InitConfig> { |
× |
NEW
|
protected privateKeys: (keyof InitConfig)[] = ['secret']; |
× |
NEW
|
|
× |
7 |
protected defaultConfig = () => {
|
× |
8 |
return {
|
× |
NEW
|
context: null,
|
× |
10 |
api: '',
|
× |
11 |
project: 'default', |
× |
12 |
title: '--', |
× |
NEW
|
enableSSL: true,
|
× |
14 |
disabledPlugins: [], |
× |
15 |
axios: null, |
× |
NEW
|
messageCapacity: 1000,
|
× |
NEW
|
useSecret: false,
|
× |
NEW
|
secret: '',
|
× |
19 |
}; |
× |
20 |
}; |
× |
21 |
} |
× |