forked from dependabot/dependabot-core
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor spec setup to use project based fixtures
- Loading branch information
Showing
10 changed files
with
72 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,7 +76,7 @@ RUN git clone https://github.com/pyenv/pyenv.git /usr/local/.pyenv \ | |
|
||
### JAVASCRIPT | ||
|
||
# Install Node 14.0 and Yarn | ||
# Install Node 14.0, Yarn and npm (updated after elm) | ||
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - \ | ||
&& apt-get install -y nodejs \ | ||
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ | ||
|
@@ -95,6 +95,10 @@ RUN npm install [email protected] \ | |
&& rm -f binaries-for-linux.tar.gz \ | ||
&& rm -rf ~/.npm | ||
|
||
# NOTE: This is a hack to get around the fact that elm 18 fails to install with | ||
# npm 7, we should look into deprecating elm 18 | ||
RUN npm install -g n | ||
|
||
|
||
### PHP | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
module.exports = { | ||
verbose: true, | ||
rootDir: "test", | ||
testEnvironment: "node", | ||
}; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
const conflictingDependencyParser = require("./conflicting-dependency-parser"); | ||
|
||
module.exports = { | ||
findConflictingDependencies: | ||
conflictingDependencyParser.findConflictingDependencies, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
const updater = require("./updater"); | ||
const peerDependencyChecker = require("./peer-dependency-checker"); | ||
const subdependencyUpdater = require("./subdependency-updater"); | ||
const conflictingDependencyParser = require("./conflicting-dependency-parser"); | ||
|
||
module.exports = { | ||
update: updater.updateDependencyFiles, | ||
updateSubdependency: subdependencyUpdater.updateDependencyFile, | ||
checkPeerDependencies: peerDependencyChecker.checkPeerDependencies, | ||
findConflictingDependencies: | ||
conflictingDependencyParser.findConflictingDependencies, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.