mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2026-05-24 16:00:16 -04:00
27 lines
449 B
JavaScript
27 lines
449 B
JavaScript
export default function fixture() {
|
|
return {
|
|
type: 'sn-mounted',
|
|
instanceConfig: {
|
|
flags: {
|
|
MAGIC_FLAG: true,
|
|
},
|
|
},
|
|
snConfig: {
|
|
options: {
|
|
myOption: 'opts',
|
|
},
|
|
},
|
|
genericObjects: [
|
|
{
|
|
getLayout() {
|
|
return {
|
|
qInfo: { qId: 'bb8' },
|
|
visualization: 'sn-mounted',
|
|
showTitles: true,
|
|
};
|
|
},
|
|
},
|
|
],
|
|
};
|
|
}
|