Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tests for node-sass 3.4.2 update #19

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 17 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@
# Configuration options are documented at:
# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/
language: node_js
node_js:
- "0.10"
- node
- '0.10'
- '0.12'
- '4.0'
- '4.1'
- '4.2'
- '4.3'
- '5.0'
- '5.1'
- '5.2'
- '5.3'
- '5.4'
- '5.5'
- '5.6'
- iojs
before_install:
before_script:
- npm install -g bower
- cd tests
- cd test
- bower install -f
- cd ..
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Custom importer for node-sass that only allows a file to be imported once. Includes additional import bonuses including importing CSS files directly into Sass, automagic Bower imports, the ability to import an `index` file from within a folder name, and the ability to import JSON and YAML files as Sass maps. Inspired by Eyeglass.",
"main": "index.js",
"scripts": {
"test": "cd tests && ../node_modules/.bin/mocha ./"
"test": "mocha"
},
"repository": {
"type": "git",
Expand Down
3 changes: 3 additions & 0 deletions test/.bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "../bower_components"
}
2 changes: 1 addition & 1 deletion tests/bower.json → test/bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
],
"license": "MIT",
"devDependencies": {
"bootstrap": "~3.3.4",
"bootstrap": "3.3.4",
"sass-toolkit": "~2.9.0",
"breakpoint-sass": "~2.5.0"
}
Expand Down
File renamed without changes.
Loading