-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrige falha no fluxo de transações rejeitadas (#2)
* Ajusta fluxo de compra considerando o status do pagamento * Adiciona endpoint para cancelamento de faturas * Insere codeception * Ajusta envio de endereço * Adiciona testes de aceitação * Apply suggestions from code review Co-Authored-By: victorsinged <[email protected]> * Versão 1.1.0
- Loading branch information
1 parent
1e284e1
commit d854b96
Showing
21 changed files
with
6,961 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
# Notas das versões | ||
|
||
## [1.1.0 - 17/07/2019](https://github.com/vindi/vindi-opencart3/releases/tag/1.1.0) | ||
- Corrige falha no fluxo de transações rejeitadas | ||
|
||
|
||
## [1.0.0 - 29/06/2018](https://github.com/vindi/vindi-opencart3/releases/tag/1.0.0) | ||
- Versão inicial |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
paths: | ||
tests: tests | ||
output: tests/_output | ||
data: tests/_data | ||
support: tests/_support | ||
envs: tests/_envs | ||
actor_suffix: Tester | ||
extensions: | ||
enabled: | ||
- Codeception\Extension\RunFailed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"require-dev": { | ||
"codeception/codeception": "^3.0" | ||
}, | ||
"scripts": { | ||
"test": "codecept run" | ||
} | ||
} | ||
|
Oops, something went wrong.