Commit f06aa553 by Robo

fix config for appveyor

parent 05f1b4ab
project_id: "ojs37kekmpl6mr0k"
version: "{build}"
init:
......@@ -7,14 +5,13 @@ init:
environment:
matrix:
- nodejs_version: 0.10
- nodejs_version: 0.10.32
- nodejs_version: 0.11.13
install:
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
- cmd: SET PATH=C:\Program Files (x86)\MSBuild\12.0\bin\;%PATH%
- ps: Install-Product node $env:nodejs_version
- cmd: SET PATH=C:\python27;%PATH%
- cmd: git submodule update --init --recursive
- cmd: npm install -g node-gyp
- npm install --msvs_version=2013
test_script:
......
......@@ -34,6 +34,7 @@ var sampleCssMapOutputPath = path.join(__dirname, '../sample.css.map');
describe('cli', function() {
it('should read data from stdin', function(done) {
this.timeout(6000);
var src = fs.createReadStream(sampleScssPath);
var emitter = spawn(cliPath, ['--stdout']);
......@@ -56,6 +57,7 @@ describe('cli', function() {
});
it('should compile sample.scss as sample.css', function(done) {
this.timeout(6000);
var env = assign(process.env, { isTTY: true });
var resultPath = path.join(__dirname, 'sample.css');
......@@ -73,6 +75,7 @@ describe('cli', function() {
});
it('should compile sample.scss to ../out.css', function(done) {
this.timeout(6000);
var env = assign(process.env, { isTTY: true });
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