Commit f06aa553 by Robo

fix config for appveyor

parent 05f1b4ab
project_id: "ojs37kekmpl6mr0k"
version: "{build}" version: "{build}"
init: init:
...@@ -7,14 +5,13 @@ init: ...@@ -7,14 +5,13 @@ init:
environment: environment:
matrix: matrix:
- nodejs_version: 0.10 - nodejs_version: 0.10.32
- nodejs_version: 0.11.13
install: install:
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) - ps: Install-Product node $env:nodejs_version
- cmd: SET PATH=C:\Program Files (x86)\MSBuild\12.0\bin\;%PATH%
- cmd: SET PATH=C:\python27;%PATH% - cmd: SET PATH=C:\python27;%PATH%
- cmd: git submodule update --init --recursive - cmd: git submodule update --init --recursive
- cmd: npm install -g node-gyp
- npm install --msvs_version=2013 - npm install --msvs_version=2013
test_script: test_script:
......
...@@ -34,6 +34,7 @@ var sampleCssMapOutputPath = path.join(__dirname, '../sample.css.map'); ...@@ -34,6 +34,7 @@ var sampleCssMapOutputPath = path.join(__dirname, '../sample.css.map');
describe('cli', function() { describe('cli', function() {
it('should read data from stdin', function(done) { it('should read data from stdin', function(done) {
this.timeout(6000);
var src = fs.createReadStream(sampleScssPath); var src = fs.createReadStream(sampleScssPath);
var emitter = spawn(cliPath, ['--stdout']); var emitter = spawn(cliPath, ['--stdout']);
...@@ -56,6 +57,7 @@ describe('cli', function() { ...@@ -56,6 +57,7 @@ describe('cli', function() {
}); });
it('should compile sample.scss as sample.css', function(done) { it('should compile sample.scss as sample.css', function(done) {
this.timeout(6000);
var env = assign(process.env, { isTTY: true }); var env = assign(process.env, { isTTY: true });
var resultPath = path.join(__dirname, 'sample.css'); var resultPath = path.join(__dirname, 'sample.css');
...@@ -73,6 +75,7 @@ describe('cli', function() { ...@@ -73,6 +75,7 @@ describe('cli', function() {
}); });
it('should compile sample.scss to ../out.css', function(done) { it('should compile sample.scss to ../out.css', function(done) {
this.timeout(6000);
var env = assign(process.env, { isTTY: true }); var env = assign(process.env, { isTTY: true });
var resultPath = path.resolve(__dirname, '../out.css'); var resultPath = path.resolve(__dirname, '../out.css');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment