15 lines
492 B
TypeScript
15 lines
492 B
TypeScript
import { describe } from 'vitest';
|
||
|
||
/**
|
||
* Legacy real automation smoke suite.
|
||
*
|
||
* Native OS-level automation has been removed.
|
||
* Real iRacing automation is not currently supported.
|
||
*
|
||
* This file is retained only as historical documentation and is
|
||
* explicitly skipped so it does not participate in normal E2E runs.
|
||
*/
|
||
describe.skip('Real automation smoke – REAL iRacing Website (native automation removed)', () => {
|
||
// No-op: native OS-level real automation has been removed.
|
||
});
|