Skip to content

Commit acc9621

Browse files
chore: remove testbench commands since they dont work
1 parent 405503c commit acc9621

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

composer.json

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,6 @@
3636
]
3737
},
3838
"scripts": {
39-
"post-autoload-dump": [
40-
"@clear",
41-
"@prepare"
42-
],
43-
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
44-
"prepare": "@php vendor/bin/testbench package:discover --ansi",
45-
"build": "@php vendor/bin/testbench workbench:build --ansi",
46-
"serve": [
47-
"Composer\\Config::disableProcessTimeout",
48-
"@build",
49-
"@php vendor/bin/testbench serve --ansi"
50-
],
5139
"lint": [
5240
"@php vendor/bin/mago lint"
5341
],

tests/Feature/BackupMetadataTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@
4646

4747
$metadata->setCreatedBy($user);
4848

49-
expect($metadata->getCreatedBy())->toBe($user);
49+
expect($metadata
50+
->getCreatedBy()
51+
->getAuthIdentifier())->toBe($user->getAuthIdentifier());
5052
});
5153

5254
it('can get the downloads for a backup', function (): void {

0 commit comments

Comments
 (0)