Install spec's third party modules in the source root.

This commit is contained in:
Cheng Zhao 2013-07-17 18:51:16 +08:00
parent 1d9fca25dc
commit ec33b4d579
4 changed files with 5 additions and 9 deletions

View file

@ -3,7 +3,9 @@
"version" : "0.1.0", "version" : "0.1.0",
"dependencies": { "dependencies": {
"coffee-script": "1.6.2" "coffee-script": "1.6.2",
"mocha": "*",
"findit": "*"
}, },
"private": true, "private": true,

View file

@ -1,6 +1,6 @@
<html> <html>
<head> <head>
<link href="node_modules/mocha/mocha.css" rel="stylesheet"> <link href="../node_modules/mocha/mocha.css" rel="stylesheet">
</head> </head>
<body> <body>

View file

@ -1,5 +1,3 @@
assert = require 'assert'
describe 'message loop', -> describe 'message loop', ->
describe 'process.nextTick', -> describe 'process.nextTick', ->
it 'should emit the callback', (done) -> it 'should emit the callback', (done) ->

View file

@ -1,9 +1,5 @@
{ {
"name": "atom-shell-specs", "name": "atom-shell-specs",
"main": "main.js", "main": "main.js",
"version": "0.1.0", "version": "0.1.0"
"dependencies": {
"mocha": "*",
"findit": "*"
}
} }