Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default ({ getService }: FtrProviderContext) => {
* the "signal.original_time" field, ensuring that timestamp overrides operate, and ensuring that
* partial errors happen correctly
*/
describe('@ess @serverless @serverlessQA timestamp tests', () => {
describe.only('@ess @serverless @serverlessQA timestamp tests', () => {
describe('alerts generated from events with a timestamp in seconds is converted correctly into the forced ISO8601 format when copying', () => {
beforeEach(async () => {
await createAlertsIndex(supertest, log);
Expand Down Expand Up @@ -300,6 +300,7 @@ export default ({ getService }: FtrProviderContext) => {
const alerts = alertsResponse.hits.hits.map((hit) => hit._source);
const alertsOrderedByEventId = orderBy(alerts, 'alert.parent.id', 'asc');

console.log('alertsOrderedByEventId', JSON.stringify(alertsOrderedByEventId, null, 2));
expect(alertsOrderedByEventId.length).equal(2);
});

Expand Down