mirror of
https://github.com/apache/superset.git
synced 2026-05-10 02:15:50 +00:00
feat(matrixify): implement matrix of any charts as core Superset feature (#34526)
Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
committed by
GitHub
parent
6969f2cf7a
commit
e6c8343fd0
@@ -16,6 +16,8 @@
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
// Mock isMatrixifyEnabled before loading any modules
|
||||
import fetchMock from 'fetch-mock';
|
||||
import {
|
||||
getChartControlPanelRegistry,
|
||||
@@ -33,6 +35,12 @@ import {
|
||||
} from 'spec/helpers/testing-library';
|
||||
import ExploreViewContainer from '.';
|
||||
|
||||
jest.doMock('@superset-ui/core', () => ({
|
||||
__esModule: true,
|
||||
...jest.requireActual('@superset-ui/core'),
|
||||
isMatrixifyEnabled: jest.fn(() => false),
|
||||
}));
|
||||
|
||||
const reduxState = {
|
||||
explore: {
|
||||
controls: {
|
||||
|
||||
Reference in New Issue
Block a user