mirror of https://github.com/pixelfed/pixelfed
Use pest for tests
parent
3e0d06c0ea
commit
71e3fa7aff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
expect()->extend('toBeOne', function () {
|
||||
return $this->toBe(1);
|
||||
});
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
test('that true is true', function () {
|
||||
expect(true)->toBeTrue();
|
||||
});
|
Loading…
Reference in New Issue