Skip to content

Commit

Permalink
Release version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
webNeat committed Oct 16, 2017
1 parent 4bb073a commit 4b2fc92
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ Testing REST API made easy.

# Contents Table

- [What is this?](what-is-this-)
- [What is this?](#what-is-this-)

- [Installation](installation)
- [Installation](#installation)

- [Testing Single Route](testing-single-route)
- [Testing Single Route](#testing-single-route)

- [Testing REST Resources](testing-rest-resources)
- [Testing REST Resources](#testing-rest-resources)

- [Changelog](changelog)
- [Changelog](#changelog)

# What is this?

Expand All @@ -33,7 +33,7 @@ npm i wajez-api-test --save-dev
Let's test the following simple application

**app.js**
```
```js
const express = require('express')
, bodyParser = require('body-parser')
, app = express()
Expand Down Expand Up @@ -148,7 +148,7 @@ In addition to `get`, `post`, `put` and `delete` methodes, the testing object pr
Let's take the following Mongoose models for example:

**user.js**
```
```js
const mongoose = require('mongoose')
, Schema = mongoose.Schema

Expand Down Expand Up @@ -266,6 +266,8 @@ When `children` are specified, the following steps are added to the testing sena

# Changelog

- **Version 1.0.3**: README updated.

- **Version 1.0.1**: Passing the mongoose model to `resource` method instead of the model name.

- **Version 1.0.0**: First version with ability to test single routes and REST resources with children.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wajez-api-test",
"version": "1.0.1",
"version": "1.0.3",
"description": "Testing REST API made easy.",
"main": "src/index.js",
"scripts": {
Expand Down

0 comments on commit 4b2fc92

Please sign in to comment.