Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:

remix-ide-browser:
docker:
- image: cimg/node:20.18.3-browsers
- image: cimg/node:20.19.0-browsers
resource_class:
xlarge
working_directory: ~/remix-project
Expand Down
20 changes: 19 additions & 1 deletion apps/remix-ide-e2e/src/tests/remixd.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -467,6 +467,15 @@ async function setupHardhatProject(): Promise<void> {
try {
const server = spawn('git clone https://github.com/NomicFoundation/hardhat-boilerplate && cd hardhat-boilerplate && yarn install && yarn add "@typechain/ethers-v5@^10.1.0" && yarn add "@typechain/hardhat@^6.1.2" && yarn add "typechain@^8.1.0" && echo "END"', [], { cwd: process.cwd() + '/apps/remix-ide', shell: true, detached: true })
return new Promise((resolve, reject) => {
server.stdout.on('data', function(data) {
console.log('stdout: ' + data.toString())
})
server.stderr.on('data', function(data) {
console.log('stderr: ' + data.toString())
})
server.on('error', function (err) {
console.error('Failed to start process:', err)
})
server.on('exit', function (exitCode) {
console.log("Child exited with code: " + exitCode);
console.log('end')
Expand All @@ -483,6 +492,15 @@ async function compileHardhatProject(): Promise<void> {
try {
const server = spawn('npx hardhat compile', [], { cwd: process.cwd() + '/apps/remix-ide/hardhat-boilerplate', shell: true, detached: true })
return new Promise((resolve, reject) => {
server.stdout.on('data', function(data) {
console.log('stdout: ' + data.toString())
})
server.stderr.on('data', function(data) {
console.log('stderr: ' + data.toString())
})
server.on('error', function (err) {
console.error('Failed to start process:', err)
})
server.on('exit', function (exitCode) {
console.log("Child exited with code: " + exitCode);
console.log('end')
Expand Down Expand Up @@ -625,4 +643,4 @@ function resetGitToHead() {
}
console.log(`Git reset to HEAD successfully.\n${stdout}`);
});
}
}