spec: add proper package test for webpack ts template (#3040)

This commit is contained in:
Samuel Attard 2022-10-31 18:02:20 -07:00 коммит произвёл GitHub
Родитель a89ed7d375
Коммит 6e9cca3579
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 35 добавлений и 11 удалений

Просмотреть файл

@ -20,6 +20,7 @@
"fs-extra": "^10.0.0"
},
"devDependencies": {
"@electron-forge/core-utils": "^6.0.0-beta.73",
"@electron-forge/maker-deb": "6.0.0-beta.73",
"@electron-forge/maker-rpm": "6.0.0-beta.73",
"@electron-forge/maker-squirrel": "6.0.0-beta.73",

Просмотреть файл

@ -1,12 +1,12 @@
import path from 'path';
import { yarnOrNpmSpawn } from '@electron-forge/core-utils';
import * as testUtils from '@electron-forge/test-utils';
import { expect } from 'chai';
import glob from 'fast-glob';
import fs from 'fs-extra';
import { api } from '../../../api/core';
import template from '../src/WebpackTypeScriptTemplate';
describe('WebpackTypeScriptTemplate', () => {
let dir: string;
@ -49,19 +49,42 @@ describe('WebpackTypeScriptTemplate', () => {
});
describe('lint', () => {
before(async () => {
it('should initially pass the linting process', async () => {
delete process.env.TS_NODE_PROJECT;
await testUtils.ensureModulesInstalled(
dir,
['electron', 'electron-squirrel-startup'],
template.devDependencies
.filter((moduleName) => moduleName.includes('eslint') || moduleName.includes('typescript'))
.concat(['@electron-forge/plugin-webpack'])
);
await testUtils.expectLintToPass(dir);
});
});
it('should initially pass the linting process', async () => {
await testUtils.expectLintToPass(dir);
describe('package', () => {
let cwd: string;
before(async () => {
delete process.env.TS_NODE_PROJECT;
// Webpack resolves plugins via cwd
cwd = process.cwd();
process.chdir(dir);
// We need the version of webpack to match exactly during development due to a quirk in
// typescript type-resolution. In prod no one has to worry about things like this
const pj = await fs.readJson(path.resolve(dir, 'package.json'));
pj.resolutions = {
// eslint-disable-next-line @typescript-eslint/no-var-requires
webpack: `${require('../../../plugin/webpack/node_modules/webpack/package.json').version}`,
};
await fs.writeJson(path.resolve(dir, 'package.json'), pj);
await yarnOrNpmSpawn(['install'], {
cwd: dir,
});
});
after(() => {
process.chdir(cwd);
});
it('should pass', async () => {
await api.package({
dir,
interactive: false,
});
});
});

Просмотреть файл

@ -9,7 +9,7 @@ async function runNPM(dir: string, ...args: string[]) {
await spawn('npm', args, { cwd: dir });
}
async function runNPMInstall(dir: string, ...args: string[]) {
export async function runNPMInstall(dir: string, ...args: string[]) {
await runNPM(dir, 'install', ...args);
}