Skip to content

Commit

Permalink
Saved object export: apply export hooks to referenced / nested objects (
Browse files Browse the repository at this point in the history
elastic#100769)

* execute export transform for nested references

* fix sort

* fix duplicate references

* add FTR test
  • Loading branch information
pgayvallet committed Jun 4, 2021
1 parent 07706a3 commit 2c4920c
Show file tree
Hide file tree
Showing 9 changed files with 1,420 additions and 783 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/

export const applyExportTransformsMock = jest.fn();
jest.doMock('./apply_export_transforms', () => ({
applyExportTransforms: applyExportTransformsMock,
}));
Loading

0 comments on commit 2c4920c

Please sign in to comment.