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.
Hello,
I am on a windows machine, so the command
RUN_TESTS=1 meteor --oncedoesn't work for me - I have to set my environment variable toRUN_TESTS=1from 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 aboutSelecting package versionsand all that, as if it is starting a Meteor app.My app is structured like this:
I have put my example spec file into my server directory (see above).
methodOne-spec.jsis structured in the following way:P.S. love the idea of this package. I was getting really tired of the overhead in Velocity.