1
0
Fork 0
mirror of https://github.com/pnx/neotest-phpunit synced 2026-06-16 03:54:55 +02:00

Add an example with double quotes

This commit is contained in:
V13Axel 2024-06-11 11:15:45 -04:00
parent 6ba782610d
commit b665a4881c

View file

@ -3,3 +3,7 @@
test('example', function () {
expect(true)->toBeTrue();
});
test("double quote example", function() {
expect(true)->toBeTrue();
});