Commit 64ceb97489085dae778545845996e5926d143f77

Authored by Adhidarma Hadiwinoto
1 parent 696e15b26c
Exists in master

some files

Showing 3 changed files with 8 additions and 1 deletions Side-by-side Diff

... ... @@ -4,7 +4,7 @@
4 4 "description": "Store DOMPUL stock in Redis",
5 5 "main": "index.js",
6 6 "scripts": {
7   - "test": "node test.js"
  7 + "test": "mocha"
8 8 },
9 9 "repository": {
10 10 "type": "git",
... ... @@ -0,0 +1,7 @@
  1 +var assert = require('assert');
  2 +
  3 +describe('Main', function() {
  4 + it('should return 0', function () {
  5 + assert.equal(0, [6,7,8].indexOf(6));
  6 + });
  7 +});