mirror of https://gitee.com/anolis/sysom.git
16 lines
396 B
JavaScript
16 lines
396 B
JavaScript
/// <reference types="cypress" />
|
|
|
|
|
|
describe("SysOM Log Manager Test", () => {
|
|
beforeEach(() => {
|
|
cy.login()
|
|
})
|
|
it.only("select audit log and filter audit log", () => {
|
|
cy.sysomLogSelectOrFilter("journal/audit", {
|
|
ip: '127.0.0.1',
|
|
path: '/api/v1/host/',
|
|
methond: 'GET',
|
|
request_type: 'operate'
|
|
}, true)
|
|
})
|
|
}) |