mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 08:31:35 +03:00
db7d10308f
* feat(bundler) dmg bundle * feat(bundler) fix dmg bundle support scripts, add license option * chore(bundler) add "forked from" notice * fix(tests) remove dmg bundling from the template test
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
const fixtureSetup = require('../fixtures/app-test-setup')
|
|
const { resolve } = require('path')
|
|
const { rmdirSync, existsSync, writeFileSync, readFileSync } = require('fs')
|
|
|
|
describe('[CLI] tauri.js template', () => {
|
|
it('init a project and builds it', done => {
|
|
const cwd = process.cwd()
|
|
try {
|
|
const fixturePath = resolve(__dirname, '../fixtures/empty')
|
|
const tauriFixturePath = resolve(fixturePath, 'src-tauri')
|
|
|
|
fixtureSetup.initJest('empty')
|
|
|
|
process.chdir(fixturePath)
|
|
|
|
const init = require('api/init')
|
|
init({
|
|
directory: process.cwd(),
|
|
force: 'all',
|
|
tauriPath: resolve(__dirname, '../../../../..')
|
|
})
|
|
|
|
process.chdir(tauriFixturePath)
|
|
|
|
const manifestPath = resolve(tauriFixturePath, 'Cargo.toml')
|
|
const manifestFile = readFileSync(manifestPath).toString()
|
|
writeFileSync(manifestPath, `workspace = { }\n\n${manifestFile}`)
|
|
} catch (e) {
|
|
done(e)
|
|
}
|
|
|
|
const build = require('api/build')
|
|
build({
|
|
tauri: {
|
|
bundle: {
|
|
targets: ['deb', 'osx', 'msi', 'appimage'] // we can't bundle dmg on CI so we remove it here
|
|
}
|
|
}
|
|
}).promise.then(() => {
|
|
process.chdir(cwd)
|
|
done()
|
|
}).catch(done)
|
|
})
|
|
})
|