15 lines
449 B
PHP
15 lines
449 B
PHP
<?php
|
|
|
|
it('keeps passkey challenge legacy script green during migration', function (): void {
|
|
$result = run_legacy_script('tests/auth/PasskeyChallengeTest.php');
|
|
|
|
expect($result['exitCode'])->toBe(0, $result['output']);
|
|
});
|
|
|
|
it('keeps register CVR legacy script green during migration', function (): void {
|
|
$result = run_legacy_script('tests/auth/RegisterCvrTest.php');
|
|
|
|
expect($result['exitCode'])->toBe(0, $result['output']);
|
|
});
|
|
|