Released by samdark on 2021/11/26 05:58:14 / π¦ Repository / π¦ Releases
AsJson
Released by DavertMik on 2021/11/18 19:12:32 / π¦ Repository / π¦ Releases
Added seeResponseIsJson()
to send*AsJson
actions
Released by DavertMik on 2021/11/17 12:52:07 / π¦ Repository / π¦ Releases
Step descorator AsJson
was introduced to simplify sending and parsing JSON requests and responses.
Add it to suite configuration:
actor: ApiTester
step_decorators:
- \Codeception\Step\AsJson
or if you use API template:
suites:
api:
actor: ApiTester
step_decorators:
- \Codeception\Step\AsJson
Rebuild actions:
./vendor/bin/codecept build
And you get new actions:
sendPostAsJson
sendGetAsJson
β¦ basically all send*
methods will receive AsJson
pair which sends request in JSON and returns parsed response:
<?php
$user = $I->sendPostAsJson('user', ['id' => 1]);
codecept_debug($user['id'])
$I->assertEquals(1, $user['id'])
Released by DavertMik on 2021/11/17 10:52:08 / π¦ Repository / π¦ Releases
send* actions were updated to return a response:
$response = $I->sendGet('/users');
$response = $I->sendPost('/users', ['name' => 'jon']);
$response = $I->sendPut('/users/1', ['name' => 'jon']);
$response = $I->sendPatch('/users/1', ['name' => 'jon']);
$response = $I->sendDelete('/users/1');
$response = $I->send('PATCH','/users/1', ['name' => 'jon']);
Released by TavoNiievez on 2021/10/19 17:56:16 / π¦ Repository / π¦ Releases
Fix incorrect type hint (#19) by olexp and TavoNiievez .
Released by Naktibalda on 2021/10/16 08:01:31 / π¦ Repository / π¦ Releases
Released by TavoNiievez on 2021/10/08 15:41:43 / π¦ Repository / π¦ Releases
Other minor changes:
README
file (#10) by ArhellReleased by Naktibalda on 2021/10/08 09:37:07 / π¦ Repository / π¦ Releases
Released by TavoNiievez on 2021/10/06 00:34:16 / π¦ Repository / π¦ Releases
Released by TavoNiievez on 2021/09/10 05:09:10 / π¦ Repository / π¦ Releases
New methods:
amActingAs
assertAuthenticatedAs
assertCredentials
assertInvalidCredentials
dontSeeInSession
dontSeeSessionHasValues
enableMiddleware
flushSession
haveInSession
seedDatabase
Non-logical changes:
This release includes a general refactoring of the code (#30) that makes it easier to navigate and read, especially using an IDE.
See the full list of changes here.
Released by Naktibalda on 2021/09/05 07:47:08 / π¦ Repository / π¦ Releases
Released by DavertMik on 2021/09/02 12:08:19 / π¦ Repository / π¦ Releases
type
method which types in characters into an active input.$I->type('Hello world');
You can emulate user input by setting a delay between key types:
$I->type('Hello world', 0.1);
seeNumberOfTabs
assertion to check how many tabs are opened at this moment:$I->seeNumberOfTabs(2);
Released by Naktibalda on 2021/08/22 07:22:29 / π¦ Repository / π¦ Releases
Add new option webdriver_proxy to tunnel requests to the remote WebDriver server
Released by DavertMik on 2021/08/19 11:16:42 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/08/06 17:36:46 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/08/06 17:36:46 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/08/06 17:31:37 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/08/06 17:31:37 / π¦ Repository / π¦ Releases
Released by TavoNiievez on 2021/08/02 15:51:15 / π¦ Repository / π¦ Releases
Released by TavoNiievez on 2021/07/07 01:17:57 / π¦ Repository / π¦ Releases
Added assertions for Symfony Mime component (#139):
assertEmailAddressContains
assertEmailAttachmentCount
assertEmailHasHeader
assertEmailHeaderNotSame
assertEmailHeaderSame
assertEmailHtmlBodyContains
assertEmailHtmlBodyNotContains
assertEmailNotHasHeader
assertEmailTextBodyContains
assertEmailTextBodyNotContains
Released by TavoNiievez on 2021/06/07 06:16:58 / π¦ Repository / π¦ Releases
$I->goToLogoutPath();
$I->logout();
is now an alias for $I->logoutProgrammatically();
Released by TavoNiievez on 2021/06/01 01:51:37 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/05/28 18:10:56 / π¦ Repository / π¦ Releases
dry-run
compatibility with symfony/console 5.3Released by Naktibalda on 2021/05/28 18:10:56 / π¦ Repository / π¦ Releases
dry-run
compatibility with symfony/console 5.3Released by samdark on 2021/05/24 20:06:33 / π¦ Repository / π¦ Releases
Released by Jeckerson on 2021/05/18 18:21:15 / π¦ Repository / π¦ Releases
Updated code base to PHP 7.2 (#14):
Released by TavoNiievez on 2021/04/29 14:24:58 / π¦ Repository / π¦ Releases
Fix Factory compatibility issue with Lumen < 7 (#12) by ibpavlov.
Released by Naktibalda on 2021/04/23 17:31:52 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/04/23 09:02:05 / π¦ Repository / π¦ Releases
Revert change implemented in 1.3.0
Released by TavoNiievez on 2021/04/16 13:39:49 / π¦ Repository / π¦ Releases
Logical changes by mrsombre :
Documentation changes by ThomasLandauer :
submitSymfonyForm()
: Mentioning name
attribute (#128)Released by Jeckerson on 2021/04/13 21:30:04 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/04/08 08:28:48 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/04/02 16:43:57 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/04/02 16:43:57 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/03/31 16:04:36 / π¦ Repository / π¦ Releases
See #6
Released by TavoNiievez on 2021/03/28 15:48:38 / π¦ Repository / π¦ Releases
Minor changes in documentation by ThomasLandauer :
stopFollowingRedirects()
restriction for email (#118)"@example.com"
as domain in documentation (#124)Released by Naktibalda on 2021/03/28 13:33:05 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/03/28 13:33:05 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/03/21 15:29:11 / π¦ Repository / π¦ Releases
Released by DavertMik on 2021/03/16 19:42:52 / π¦ Repository / π¦ Releases
Custom Store can be used for Data Factory. See #2
Released by Naktibalda on 2021/03/02 06:51:05 / π¦ Repository / π¦ Releases
Append query params to URL for HEAD requests
Released by Naktibalda on 2021/02/23 17:12:18 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/02/23 17:12:18 / π¦ Repository / π¦ Releases
Released by TavoNiievez on 2021/02/12 22:31:22 / π¦ Repository / π¦ Releases
seeCurrentTemplateIs
, seeRenderedTemplate
and dontSeeRenderedTemplate
.grabSentEmails
and grabLastSentEmail
functions were added.SeeOrphanEvent
and dontSeeOrphanEvent
assertions.$url
parameter is now optional in the seePageIsAvailable
assertion.Symfony 3.4
support removed. Symfony 4.4
or higher is now required.Swift Mailer
was dropped in favor of Symfony Mailer
; the mailer
configuration parameter was removed.If you are already using
Symfony 4.4
or higher it should not be necessary to make changes to your tests to update!
Released by Jeckerson on 2021/02/10 22:09:30 / π¦ Repository / π¦ Releases
Changed
Released by Naktibalda on 2021/02/01 07:32:33 / π¦ Repository / π¦ Releases
codecept run suite
when suite name matches directory (bug introduced in 4.1.16)codecept run tests
is equivalent to codecept run
codecept run :filter
works without specifying suite #6105codecept run tests:filter
works tooReleased by Naktibalda on 2021/02/01 07:32:33 / π¦ Repository / π¦ Releases
codecept run suite
when suite name matches directory (bug introduced in 4.1.16)codecept run tests
is equivalent to codecept run
codecept run :filter
works without specifying suite #6105codecept run tests:filter
works tooReleased by Naktibalda on 2021/01/26 07:33:02 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/01/26 07:33:02 / π¦ Repository / π¦ Releases
Released by TavoNiievez on 2021/01/19 05:02:29 / π¦ Repository / π¦ Releases
New features:
Lumen 6
, Lumen 7
, and Lumen 8
compatibility.Breaking changes:
PHP 7.3
.Lumen 5
and lower.Minor change: Adding link to βcentralβ parts explanation (#4) by ThomasLandauer.
Released by Naktibalda on 2021/01/17 19:32:00 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/01/17 19:32:00 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/01/17 19:30:29 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2021/01/16 12:03:45 / π¦ Repository / π¦ Releases
$cookie->setSecure()
always as boolean #6Released by Naktibalda on 2020/12/30 15:56:46 / π¦ Repository / π¦ Releases
Released by TavoNiievez on 2020/12/29 20:52:27 / π¦ Repository / π¦ Releases
New features:
Laravel 6
, Laravel 7
, and Laravel 8
compatibility.Breaking changes:
PHP 7.3
.Laravel 5
and lower.Codeception\Module\Laravel5
class was renamed to Codeception\Module\Laravel
:
```diff
modules: enabled:
Minor change: Adding link to βcentralβ parts explanation (#8) by ThomasLandauer.
If youβre interested in contributing to this module and didnβt know where to start, a contribution guide is now available, thanks to ThomasLandauer and TavoNiievez.
Released by Naktibalda on 2020/12/28 19:22:25 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/12/28 19:22:25 / π¦ Repository / π¦ Releases
Released by samdark on 2020/12/28 11:32:21 / π¦ Repository / π¦ Releases
Instance::of()
in configuration #21 by antonovsky$_SERVER['QUERY_STRING']
to mimic normal behavior of most webservers by ebornedReleased by Naktibalda on 2020/12/26 16:58:43 / π¦ Repository / π¦ Releases
Use wrapper for assertRegExp method
Released by TavoNiievez on 2020/12/26 15:43:02 / π¦ Repository / π¦ Releases
Update project name to module-laravel
(#4)
Released by TavoNiievez on 2020/12/26 14:18:48 / π¦ Repository / π¦ Releases
Support PHP 8 (Depends on Laravel libraries actually supporting PHP 8) by Naktibalda
Released by TavoNiievez on 2020/12/20 16:52:03 / π¦ Repository / π¦ Releases
--debug
(#77)If youβre interested in contributing to this module and didnβt know where to start, a contribution guide is now available, thanks to ThomasLandauer and TavoNiievez (#79).
BC: Removed support for PHP 7.1
and PHP 7.2
.
Released by Naktibalda on 2020/12/20 13:45:38 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/12/20 13:45:38 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/12/20 13:38:20 / π¦ Repository / π¦ Releases
Add support for IS NOT NULL in database assertions #12
Released by TavoNiievez on 2020/12/11 20:50:16 / π¦ Repository / π¦ Releases
Now you can run test for all the methods of this module in https://github.com/Codeception/symfony-module-tests .
seeAuthentication
, dontSeeAuthentication
and persistService
, use seeRememberedAuthentication
, dontSeeRememberedAuthentication
and persistPermanentService
instead.Minor logical change in #74.
Released by TavoNiievez on 2020/11/26 12:56:36 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/11/26 07:20:07 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/11/26 06:57:10 / π¦ Repository / π¦ Releases
Released by TavoNiievez on 2020/11/25 19:31:47 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/11/25 07:58:15 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/11/25 07:15:31 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/11/25 06:44:01 / π¦ Repository / π¦ Releases
Released by TavoNiievez on 2020/11/24 16:56:31 / π¦ Repository / π¦ Releases
Released by TavoNiievez on 2020/11/16 16:52:18 / π¦ Repository / π¦ Releases
Improved documentation of the βPartsβ feature by ThomasLandauer (#40)
Released by Naktibalda on 2020/11/16 07:24:08 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/11/16 06:44:03 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/11/16 06:44:03 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/11/16 06:27:24 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/11/14 20:44:32 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/11/07 20:10:24 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/11/04 17:06:31 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/11/03 17:36:41 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/11/03 17:36:41 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/11/03 07:11:13 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/31 19:08:59 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/31 19:03:32 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/31 18:41:28 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/28 13:30:19 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/28 07:48:01 / π¦ Repository / π¦ Releases
Depends on Lumen libraries actually supporting PHP 8
Released by Naktibalda on 2020/10/28 07:06:39 / π¦ Repository / π¦ Releases
Depends on Laravel libraries actually supporting PHP 8
Released by Naktibalda on 2020/10/27 06:39:25 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/26 06:16:30 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/24 15:41:47 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/24 15:29:51 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/24 15:22:52 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/24 14:50:10 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/23 18:22:43 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/23 18:03:56 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/23 18:03:56 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/23 17:52:08 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/21 16:49:39 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/11 18:55:38 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/11 18:39:31 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/11 18:35:08 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/11 18:07:26 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/10/11 18:07:26 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/09/17 13:38:02 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/08/28 08:10:16 / π¦ Repository / π¦ Releases
#7 by TavoNiievez
Released by Naktibalda on 2020/08/28 07:06:19 / π¦ Repository / π¦ Releases
#9 by ThomasLandauer and TavoNiievez
Released by Naktibalda on 2020/08/28 07:01:59 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/08/28 06:58:51 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/08/28 06:53:33 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/08/28 06:43:25 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/08/28 06:43:25 / π¦ Repository / π¦ Releases
Released by ruudboon on 2020/08/26 09:34:29 / π¦ Repository / π¦ Releases
Fixed
Released by Naktibalda on 2020/07/05 15:46:13 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/07/05 15:35:51 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/06/07 16:37:13 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/06/07 16:37:13 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/05/31 08:52:02 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/05/24 14:03:59 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/05/24 14:03:59 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/04/29 13:52:51 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/04/20 07:28:56 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/04/18 10:03:04 / π¦ Repository / π¦ Releases
Added new assertion methods:
They were introduced in PHPUnit 9 to replace older method names, but Asserts module makes them work with older versions of PHPUnit too.
Released by Naktibalda on 2020/04/05 14:11:53 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/04/01 10:19:18 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/04/01 09:22:36 / π¦ Repository / π¦ Releases
cleanup: dirty
config optionReleased by Naktibalda on 2020/03/28 15:01:29 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/03/23 17:18:20 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/03/23 17:18:20 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/03/23 17:15:52 / π¦ Repository / π¦ Releases
Modern browsers reject cookies with singlepart domain names, the best option is not to set domain property unless explicitly specified.
Released by Naktibalda on 2020/03/17 16:56:14 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/03/17 16:56:14 / π¦ Repository / π¦ Releases
Released by Slamdunk on 2020/03/17 11:14:58 / π¦ Repository / π¦ Releases
Fixed bugs:
Released by Naktibalda on 2020/03/14 16:54:45 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/03/14 16:54:45 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/03/06 08:39:36 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/03/06 08:25:48 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/03/04 16:54:45 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/02/29 14:55:56 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/02/19 17:02:05 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/02/19 17:02:05 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/02/15 21:26:34 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/02/07 20:34:19 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/02/07 20:34:19 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/02/07 17:34:52 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/02/07 17:11:44 / π¦ Repository / π¦ Releases
Use assertStringNotContainsString instead of assertNotContains in dontSeeInShellOutput
Released by Naktibalda on 2020/02/04 17:25:43 / π¦ Repository / π¦ Releases
module-webdriver does not display Selenium logs on every error by default, for debugging please change debug_log_entries in module configuration to positive value.
Released by Naktibalda on 2020/02/01 19:29:49 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/02/01 19:26:08 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/01/29 15:19:36 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/01/28 13:23:15 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/01/28 08:16:49 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/01/24 07:41:14 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/01/24 07:41:14 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/01/23 17:55:51 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/01/22 15:14:48 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/01/21 07:45:14 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/01/20 08:00:05 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/01/17 16:55:55 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/01/14 14:54:31 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2020/01/14 14:54:31 / π¦ Repository / π¦ Releases
Released by ruudboon on 2020/01/11 17:02:24 / π¦ Repository / π¦ Releases
Fixed
Released by ruudboon on 2020/01/07 12:32:16 / π¦ Repository / π¦ Releases
Fixed
Released by ruudboon on 2020/01/06 11:26:42 / π¦ Repository / π¦ Releases
Removed composer.lock Updated dependencies Updated SQL schema Updated DocBlocks
Released by ruudboon on 2020/01/06 09:32:56 / π¦ Repository / π¦ Releases
Initial release of the Codeception module for Phalcon 4.
Released by Naktibalda on 2019/12/21 16:26:45 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/12/21 16:26:45 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/12/19 16:54:29 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/12/19 16:54:29 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/12/08 18:03:36 / π¦ Repository / π¦ Releases
Fixes some compatibility issue with MariaDB https://github.com/Codeception/Codeception/issues/5778
Released by Naktibalda on 2019/12/04 17:14:16 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/11/13 17:34:35 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/11/13 17:33:39 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/11/12 16:47:30 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/11/09 20:33:00 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/25 17:33:04 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/19 15:29:58 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/19 15:29:42 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/19 15:29:13 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/19 15:29:01 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/19 15:28:32 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/19 15:27:37 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/19 15:27:22 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/19 15:27:12 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/19 15:27:01 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/19 15:02:04 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/18 11:24:38 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/18 11:24:11 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/18 11:23:56 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/18 11:23:43 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/18 11:23:32 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/18 11:21:41 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/18 11:21:22 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/18 11:21:11 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/18 11:20:59 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/18 11:07:51 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/18 11:07:08 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/18 11:06:52 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/18 11:06:05 / π¦ Repository / π¦ Releases
Released by Naktibalda on 2019/10/18 11:05:50 / π¦ Repository / π¦ Releases
Write and execute a test for an existing app
in less than a 5 mins!