mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-02-06 13:57:16 +00:00
* build: migrate repo to use `pnpm` as the pacakge manager * corepack enable * update lock file * format files * format .github * fix audit js * wrap in quotes * --frozen-lockfile * simplify packageManager field * lockfile * remove cache from audit workflow
61 lines
1.8 KiB
JavaScript
61 lines
1.8 KiB
JavaScript
// Copyright 2019-2024 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
const fixtureSetup = require('../fixtures/app-test-setup.js')
|
|
const { resolve } = require('path')
|
|
const { existsSync, readFileSync, writeFileSync, rmSync } = require('fs')
|
|
const { move } = require('fs-extra')
|
|
const cli = require('~/main.js')
|
|
|
|
const currentDirName = __dirname
|
|
|
|
describe('[CLI] @tauri-apps/cli template', () => {
|
|
it('init a project and builds it', async () => {
|
|
const cwd = process.cwd()
|
|
const fixturePath = resolve(currentDirName, '../fixtures/empty')
|
|
const tauriFixturePath = resolve(fixturePath, 'src-tauri')
|
|
const outPath = resolve(tauriFixturePath, 'target')
|
|
const cacheOutPath = resolve(fixturePath, 'target')
|
|
|
|
fixtureSetup.initJest('empty')
|
|
|
|
process.chdir(fixturePath)
|
|
|
|
const outExists = existsSync(outPath)
|
|
if (outExists) {
|
|
if (existsSync(cacheOutPath)) {
|
|
rmSync(cacheOutPath, { recursive: true, force: true })
|
|
}
|
|
await move(outPath, cacheOutPath)
|
|
}
|
|
|
|
await cli.run([
|
|
'init',
|
|
'--directory',
|
|
process.cwd(),
|
|
'--force',
|
|
'--tauri-path',
|
|
resolve(currentDirName, '../../../../../..'),
|
|
'--ci'
|
|
])
|
|
|
|
if (outExists) {
|
|
await move(cacheOutPath, outPath)
|
|
}
|
|
|
|
process.chdir(tauriFixturePath)
|
|
|
|
const manifestPath = resolve(tauriFixturePath, 'Cargo.toml')
|
|
const manifestFile = readFileSync(manifestPath).toString()
|
|
writeFileSync(manifestPath, `workspace = { }\n${manifestFile}`)
|
|
|
|
const configPath = resolve(tauriFixturePath, 'tauri.conf.json')
|
|
const config = readFileSync(configPath).toString()
|
|
writeFileSync(configPath, config.replace('com.tauri.dev', 'com.tauri.test'))
|
|
|
|
await cli.run(['build', '--verbose'])
|
|
process.chdir(cwd)
|
|
})
|
|
})
|