-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
304 additions
and
97 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,31 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased in Git] | ||
|
||
## [1.2.0] (2020-02-03) | ||
### Added | ||
* Fixes for multiple areas of the app based on adding more code coverage | ||
* Git statuses | ||
* Changelog | ||
|
||
* Created a preprocessor package to allow injection of Gherkin within feature files. | ||
|
||
* API package for api requests | ||
* SQL package for sql commands | ||
* Validations package for performing processing. | ||
|
||
## [1.2.1] (2020-02-03) | ||
### Added | ||
* Fixes for set examples, there was an issue when a background step was included | ||
* Add .npmignore | ||
* Adding in eslint | ||
* Multiple bug fixes due to issues found by eslint | ||
|
||
## [1.3.0] (2020-02-05) | ||
### Added | ||
* Added in AWS testing for S3, DynamoDB, SQS, Lambda (not tested yet). | ||
* Is able to run on localstack but uses the portmap due to some configurability issues with SQS. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 @@ | ||
mkdir -p test/report | ||
if [[ "$ENVIRONMENT" == "COVERAGE" ]]; then | ||
npx nyc --reporter=lcov --reporter=text cucumber-js $EXTRAS -f json:test/report/aws.json --require "stepDefinitions/*.js" features/$* | ||
else | ||
npx cucumber-js $EXTRAS -f json:test/report/aws.json --require "stepDefinitions/*.js" features/$* | ||
fi | ||
result=$? | ||
npx multiReport | ||
exit $result |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.