-
Notifications
You must be signed in to change notification settings - Fork 0
Tests aren't running when I invoke meteor --once (on windows) #9
Copy link
Copy link
Open
Description
Hello,
I am on a windows machine, so the command RUN_TESTS=1 meteor --once doesn't work for me - I have to set my environment variable to RUN_TESTS=1 from the control panel, which I've done.
When I go into the root meteor directory and run meteor --once, nothing happens. It shows some logs about Selecting package versions and all that, as if it is starting a Meteor app.
My app is structured like this:
/my-app
Readme.md
/src
/server
/publications
/methods
methodOne.js
methodOne-spec.js
/client
I have put my example spec file into my server directory (see above). methodOne-spec.js is structured in the following way:
T.suite(function() {
describe('example method', function() {
context('test case', function() {
it('should return true', function() {
var t = true;
t.should.be.ok()
})
});
});
});
P.S. love the idea of this package. I was getting really tired of the overhead in Velocity.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels