feat: publish HoloLake model-native living system source
This commit is contained in:
parent
6ad10edde1
commit
c395dd3a99
2467 changed files with 615073 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
import { readFileSync } from 'node:fs'
|
||||
|
||||
describe('Tauri drag/drop configuration', () => {
|
||||
it('keeps browser file drops disabled so images use the native attachment path', () => {
|
||||
const config = JSON.parse(readFileSync(`${process.cwd()}/src-tauri/tauri.conf.json`, 'utf8'))
|
||||
|
||||
expect(config.app.windows[0].dragDropEnabled).toBe(false)
|
||||
})
|
||||
})
|
||||
Loading…
Reference in a new issue