I am trying to convert string to blob but I keep getting {} instead
const workingCSV = "Hey, hello, world,"
const localVue = createLocalVue()
const wrapper = shallowMount(ModalAddCollectionCSV, {
localVue,
propsData: {
visible: true,
},
})
const fileDict = [{ file: new Blob([workingCSV]) }]
fileDict is always [{file:{}}], I need it in that format because loadcsv reads the first file passed to it, but here the first file is always empty