Skip to content

Commit

Permalink
bumping version. Fixing contributors section. Failing tests on purpos…
Browse files Browse the repository at this point in the history
…e since we still need to write them up
  • Loading branch information
anvk committed Jul 28, 2015
1 parent 1f50b19 commit f2966bd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# easy-sql-tests [![Build Status](https://travis-ci.org/anvk/easy-sql-tests.svg?branch=master)](https://travis-ci.org/anvk/easy-sql-tests)

> Micro framework to execute tests for T-SQL logic
> Micro framework to execute tests for T-SQL logic in Node.js
## Install

Expand Down Expand Up @@ -499,4 +499,4 @@ describe('my test suite', function() {

MIT license; see [LICENSE](./LICENSE).

(c) 2015 by Alexey Novak
(c) 2015 by Alexey Novak and Abdul Khan
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
{
"name": "easy-sql-tests",
"version": "1.0.2",
"version": "1.0.3",
"author": "anvk",
"main": "dist/easy-sql-test.js",
"description": "Micro framework to execute tests for T-SQL logic",
"description": "Micro framework to execute tests for T-SQL logic in Node.js",
"contributors": [
{
"name": "Alexey Novak",
"email": "alexey.novak.mail@gmail.com"
},
{
"name": "Abdul Khan",
"email": "abdulask@gmail.com"
}
],
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion test/easy-sql-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ describe('easy-sql-test tests', function() {

// TODO: write tests
it('dummy test', function() {
expect(true).to.be.true;
expect(true).to.be.false;
});

});

0 comments on commit f2966bd

Please sign in to comment.