Skip to content

Commit

Permalink
Fix folder name inconsistency
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnns committed Feb 14, 2017
1 parent 5fe4030 commit e939cac
Show file tree
Hide file tree
Showing 10 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/bootstrapSass/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = {
loader: sassLoader,
options: {
includePaths: [
path.resolve(__dirname, "../scss/from-include-path")
path.resolve(__dirname, "../scss/includePath")
]
}
}]
Expand Down
2 changes: 1 addition & 1 deletion test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ syntaxStyles.forEach(ext => {
it("should resolve imports from other language style correctly", () => execTest("import-other-style"));
// Test for includePath imports
it("should resolve imports from another directory declared by includePaths correctly", () => execTest("import-include-paths", {
includePaths: [path.join(__dirname, ext, "from-include-path")]
includePaths: [path.join(__dirname, ext, "includePath")]
}));
it("should not resolve CSS imports", () => execTest("import-css"));
it("should compile bootstrap-sass without errors", () => execTest("bootstrap-sass"));
Expand Down
2 changes: 1 addition & 1 deletion test/tools/createSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function createSpec(ext) {
functions: customFunctions,
includePaths: [
path.join(testFolder, ext, "another"),
path.join(testFolder, ext, "from-include-path")
path.join(testFolder, ext, "includePath")
]
};

Expand Down
2 changes: 1 addition & 1 deletion test/watch/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = {
loader: sassLoader,
options: {
includePaths: [
path.resolve(__dirname, "../scss/from-include-path")
path.resolve(__dirname, "../scss/includePath")
]
}
}]
Expand Down

0 comments on commit e939cac

Please sign in to comment.