Skip to content

Commit

Permalink
rename postgressql to postgresql
Browse files Browse the repository at this point in the history
  • Loading branch information
martdo02 committed Oct 31, 2023
1 parent f101a5a commit aa01231
Show file tree
Hide file tree
Showing 16 changed files with 304 additions and 97 deletions.
352 changes: 264 additions & 88 deletions package-lock.json

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
31 changes: 31 additions & 0 deletions packages/postgresql/CHANGELOG.md
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.
9 changes: 9 additions & 0 deletions packages/postgresql/runFeature.sh
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.
9 changes: 0 additions & 9 deletions packages/postgressql/runFeature.sh

This file was deleted.

0 comments on commit aa01231

Please sign in to comment.