Skip to content

Tests aren't running when I invoke meteor --once (on windows) #9

Description

@zacharynevin

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions