Socket
Socket
Sign inDemoInstall

karma-pact

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karma-pact - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

2

package.json
{
"name": "karma-pact",
"version": "0.0.1",
"version": "0.0.2",
"description": "Launches a Pact Mock Server for Karma",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -5,3 +5,3 @@ # Karma Pact

Implementation of a Karma Plugin to launch a Pact Mock Server before executing your Pact tests on the browser.
Implementation of a Karma Plugin to launch a [Pact Mock Server](https://github.com/pact-foundation/pact-node) before executing your [Pact tests](https://github.com/pact-foundation/pact-js) on the browser.

@@ -21,2 +21,42 @@ From the [Pact website](http://docs.pact.io/):

## Installation
First install the package from NPM:
```
npm install --save-dev karma-pact
```
Then, on your Karma Configuration file, add the below:
```javascript
module.exports = function (config) {
config.set({
// in here we are simply telling to use Jasmine with Pact
frameworks: ['jasmine', 'pact'],
// the Pact opts will go here
pact: {}
})
```
The `pact` configuration in the file is as follows (same present at [pact-node](https://github.com/pact-foundation/pact-node)):
```javascript
{
port: <Number>, // Port number that the server runs on, defaults to 1234
host: <String>, // Host on which to bind the server on, defaults to 'localhost'
log: <String>, // File to log output on relative to current working directory, defaults to none
ssl: <Boolean>, // Create a self-signed SSL cert to run the server over HTTPS , defaults to 'false'
cors: <Boolean>, // Allow CORS OPTION requests to be accepted, defaults to 'false'
dir: <String>, // Directory to write the pact contracts relative to the current working directory, defaults to none
spec: <Number>, // The pact specification version to use when writing pact contracts, defaults to '1'
consumer: <String>, // The name of the consumer to be written to the pact contracts, defaults to none
provider: <String> // The name of the provider to be written to the pact contracts, defaults to none
}
```
## Examples
Check the `karma` folder under [Pact JS](https://github.com/pact-foundation/pact-js) for examples with Mocha and Jasmine.
## Contributing

@@ -23,0 +63,0 @@ 1. Fork it

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc