Speed โ€‹โ€‹of use, meteorite and travis ci

I made a basic application in Meteor and used speed with a wet . I tried to find ways to build on Travis ci. Travis suggested using for .travis.yml

following:
 language: node_js node_js: - "0.10" before_install: - "curl -L http://git.io/3l-rRA | /bin/sh" services: - mongodb env: - LAIKA_OPTIONS="-t 5000" 

Unfortunately, this looks like based on the outdated laika infrastructure .

Is it possible to use the speed view in a meteorite application and build it based on travis ci?

+5
source share
1 answer

I had the same problem trying to get the cucumber tests on Travis.

It turns out that it is as simple as installing Meteor through the recommended method on its official website. Here is the configuration I use in the project:

 sudo: required language: node_js node_js: - "0.12" install: - "curl https://install.meteor.com | /bin/sh" - "meteor update" script: - "meteor --test --once" env: - "SELENIUM_BROWSER=phantomjs" 
+3
source

Source: https://habr.com/ru/post/1214196/


All Articles