e2e интеграционные тесты

This commit is contained in:
2025-10-28 10:51:14 +03:00
parent 6bffe6a9e1
commit 4e2d0f03de
9 changed files with 191 additions and 85 deletions

View File

@@ -22,7 +22,7 @@ describe('Generated Client', () => {
});
describe('компиляция TypeScript', () => {
test.skip('сгенерированный код должен компилироваться без ошибок', async () => {
test('сгенерированный код должен компилироваться без ошибок', async () => {
const outputPath = join(tempDir, 'output');
const config: GeneratorConfig = {
inputPath: FIXTURES.VALID,
@@ -40,7 +40,7 @@ describe('Generated Client', () => {
expect(exitCode).toBe(0);
}, 30000);
test.skip('должны отсутствовать TypeScript ошибки', async () => {
test('должны отсутствовать TypeScript ошибки', async () => {
const outputPath = join(tempDir, 'output');
const config: GeneratorConfig = {
inputPath: FIXTURES.VALID,
@@ -161,7 +161,7 @@ describe('Generated Client', () => {
});
describe('различные форматы спецификаций', () => {
test.skip('должен работать с минимальной спецификацией', async () => {
test('должен работать с минимальной спецификацией', async () => {
const outputPath = join(tempDir, 'output');
const config: GeneratorConfig = {
inputPath: FIXTURES.MINIMAL,