Skip to content

Commit

Permalink
WIP. 1/2 manual tests on Vitest.
Browse files Browse the repository at this point in the history
  • Loading branch information
pomek committed Sep 17, 2024
1 parent 9563123 commit 6421acb
Show file tree
Hide file tree
Showing 3 changed files with 372 additions and 593 deletions.
2 changes: 1 addition & 1 deletion packages/ckeditor5-dev-tests/lib/tasks/runmanualtests.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

import fs from 'fs';
import path from 'path';
import { spawn } from 'child_process';
import chalk from 'chalk';
import { globSync } from 'glob';
import { spawn } from 'child_process';
import inquirer from 'inquirer';
import isInteractive from 'is-interactive';
import { Server as SocketServer } from 'socket.io';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function createManualTestServer( sourcePath, port = 8125, onCreat
onRequest( sourcePath, request, response );
} ).listen( port );

// SIGINT isn't caught on Windows in process. However CTRL+C can be catch
// SIGINT isn't caught on Windows in process. However, `CTRL+C` can be caught
// by `readline` module. After that we can emit SIGINT to the process manually.
if ( process.platform === 'win32' ) {
const readline = require( 'readline' ).createInterface( {
Expand Down
Loading

0 comments on commit 6421acb

Please sign in to comment.