More tests

This commit is contained in:
Nuno Maduro
2023-05-27 14:08:38 +01:00
parent a90b90ad29
commit 26a6e7d712
12 changed files with 101 additions and 15 deletions

View File

@ -5,3 +5,11 @@ it('is a test', function () {
});
it('is a higher order message test')->expect(true)->toBeTrue();
describe('a "describe" group of tests', function () {
it('is a test', function () {
expect(['key' => 'foo'])->toHaveKey('key')->key->toBeString();
});
it('is a higher order message test')->expect(true)->toBeTrue();
});