mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
parent
a14c2ae7d5
commit
c5d7a964e3
1 changed files with 21 additions and 0 deletions
|
@ -91,6 +91,14 @@ export default function (providerContext: FtrProviderContext) {
|
|||
});
|
||||
expect(res.statusCode).equal(200);
|
||||
});
|
||||
it('should have created the index for the transform', async function () {
|
||||
// the index is defined in the transform file
|
||||
const res = await es.transport.request({
|
||||
method: 'GET',
|
||||
path: `/logs-all_assets.test_log_current_default`,
|
||||
});
|
||||
expect(res.statusCode).equal(200);
|
||||
});
|
||||
it('should have installed the kibana assets', async function () {
|
||||
const resIndexPatternLogs = await kibanaServer.savedObjects.get({
|
||||
type: 'index-pattern',
|
||||
|
@ -261,6 +269,19 @@ export default function (providerContext: FtrProviderContext) {
|
|||
);
|
||||
expect(res.statusCode).equal(404);
|
||||
});
|
||||
it('should have deleted the index for the transform', async function () {
|
||||
// the index is defined in the transform file
|
||||
const res = await es.transport.request(
|
||||
{
|
||||
method: 'GET',
|
||||
path: `/logs-all_assets.test_log_current_default`,
|
||||
},
|
||||
{
|
||||
ignore: [404],
|
||||
}
|
||||
);
|
||||
expect(res.statusCode).equal(404);
|
||||
});
|
||||
it('should have uninstalled the kibana assets', async function () {
|
||||
let resDashboard;
|
||||
try {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue