You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-csc-ui/test/jest/__tests__/__mocks__/quasar.js

21 lines
325 B

const mockPlatform = {
is: {
mobile: false,
desktop: true,
android: false,
ios: false,
cordova: false
}
}
export const Platform = mockPlatform
// Export a function to reset/update the mock
export const __setPlatform = (config) => {
mockPlatform.is = { ...config }
}
export default {
Platform
}