Sha256: e5338e7471da5280254ba62130050b1caaee0634f0315f85892e91845ba4748a

Contents?: true

Size: 1.24 KB

Versions: 12

Compression:

Stored size: 1.24 KB

Contents

# Testing

## Unit

To run unit tests:

    bundle exec rspec

## Integration

These commands run all from the jets repo itself. The demo folder has been added to the `.gitignore`.

### Locally

To run the integration tests locally, you need to create a new Jets CRUD project and start the server:

    jets new demo
    cd demo
    jets generate scaffold Post title:string
    jets server

Then you can run the postman tests:

    spec/integration/local.sh

The integration_local.sh script ensures that the necessary data exists for the postman integration test to pass.  It ultimately calls:

    newman run spec/integration/fixtures/postman/collection.json -e spec/integration/fixtures/postman/environment.json

The integration test results should look something like this:

* [Jets Integration Test Results](https://gist.github.com/tongueroo/fcea2b2f48342d1448d3f258fcd6536c)

### Remotely

Then you can deploy the jets app and test it on real AWS Lambda.

    cp ~/environment/.env.development.remote . # assumes you have a .env.development.remote
    jets deploy

Run the remote integration script:

    BASE_URL=xxx spec/integration/remote.sh

Example:

    BASE_URL=https://wb5dcjc09a.execute-api.us-west-2.amazonaws.com/dev spec/integration/remote.sh
    

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
jets-1.0.18 README/testing.md
jets-1.0.17 README/testing.md
jets-1.0.16 README/testing.md
jets-1.0.15 README/testing.md
jets-1.0.13 README/testing.md
jets-1.0.12 README/testing.md
jets-1.0.11 README/testing.md
jets-1.0.10 README/testing.md
jets-1.0.9 README/testing.md
jets-1.0.8 README/testing.md
jets-1.0.7 README/testing.md
jets-1.0.6 README/testing.md