UNPKG
yapi-plugin-pl-test-dashboard
Version:
latest (1.1.3)
1.1.3
1.1.2
1.1.0
1.0.0
YAPI自动化测试结果数据面板插件,支持在YAPI中通过数据可视化的方式查看自动化测试结果。
yapi-plugin-pl-test-dashboard
/
utils
/
config.js
17 lines
(13 loc)
•
276 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
let
_config = {}
class
Config
{
static
get
instance
() {
return
_config }
static
set
instance
(
options
) {
if
(options &&
typeof
options ==
'object'
) {
let
config =
Object
.
assign
(_config, options) _config = config } } }
module
.
exports
=
Config