Skip to content

Commit

Permalink
v4.0.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maximgeerinck committed Mar 23, 2023
1 parent 5baf7e4 commit 3a929c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@synthetixio/synpress",
"version": "3.5.1",
"name": "@phantom/synpress",
"version": "4.0.0-alpha.1",
"description": "Synpress is e2e testing framework based around Cypress.io & playwright with included MetaMask support. Test your dapps with ease.",
"keywords": [
"Synpress",
Expand Down Expand Up @@ -114,6 +114,9 @@
"**/ansi-regex": "5.0.1",
"**/@testing-library/dom": "8.20.0"
},
"overrides": {
"lodash@<4.17.20": "4.17.20"
},
"engines": {
"node": ">=14"
},
Expand Down
2 changes: 1 addition & 1 deletion providers.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
getProviders: providersConfig => {
const providers = [];
const tempProviders = (providersConfig ?? '').split(',');
const tempProviders = (providersConfig || '').split(',');
for (const provider of tempProviders) {
const [providerName, providerVersion] = provider.split('@'); // can accept names like [email protected]
providers.push({ name: providerName, version: providerVersion });
Expand Down

0 comments on commit 3a929c1

Please sign in to comment.