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
/
client.js
12 lines
(10 loc)
•
247 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
Dashboard
from
'./dashboard/index'
module
.
exports
=
function
(
) {
this
.
bindHook
(
'sub_nav'
,
function
(
app
) { app.
dashboard
= {
name
:
'数据面板'
,
path
:
'/project/:id/dashboard'
,
component
:
Dashboard
, } }) }