23 lines
551 B
JavaScript
23 lines
551 B
JavaScript
const assert = require("assert");
|
|
const fs = require("fs");
|
|
const path = require("path");
|
|
|
|
const source = fs.readFileSync(
|
|
path.resolve(
|
|
__dirname,
|
|
"../../src/views/ccdiProject/components/detail/RiskDetailSection.vue"
|
|
),
|
|
"utf8"
|
|
);
|
|
|
|
[
|
|
"getOverviewAbnormalAccountPeople",
|
|
"abnormalAccountLoading",
|
|
"abnormalAccountPageNum",
|
|
"abnormalAccountPageSize",
|
|
"abnormalAccountTotal",
|
|
"abnormalAccountList",
|
|
"handleAbnormalAccountPageChange",
|
|
"loadAbnormalAccountPeople",
|
|
].forEach((token) => assert(source.includes(token), token));
|