mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2025-12-22 19:24:21 -05:00
10 lines
164 B
JavaScript
10 lines
164 B
JavaScript
export default function fixture() {
|
|
return {
|
|
type: 'error-sn',
|
|
load: async () =>
|
|
function sn() {
|
|
throw new Error('hahaha');
|
|
},
|
|
};
|
|
}
|