fix: remove engines from ui-theme

This commit is contained in:
Juan Picado 2022-01-24 21:04:45 +01:00
parent cca1f7f32a
commit ad3151c3f3
3 changed files with 8 additions and 8 deletions

View File

@ -0,0 +1,5 @@
---
'@verdaccio/ui-theme': minor
---
fix: remove engines from ui-theme

View File

@ -12,10 +12,6 @@
},
"homepage": "https://verdaccio.org",
"main": "index.js",
"engines": {
"node": ">=14",
"npm": ">=6"
},
"devDependencies": {
"@types/react": "17.0.38",
"@types/react-autosuggest": "10.1.5",

View File

@ -251,15 +251,14 @@ Then import the feature and run the function within the main `describe` block.
import newFeature from './newFeature';
describe('functional test verdaccio', function () {
// test are fast, but do not change this time out, 10 seconds should be more than enough
/ test are fast, but do not change this time out, 10 seconds should be more than enough
jest.setTimeout(10000);
// servers are accessed via a global jest state.
/ servers are accessed via a global jest state.
const server1: IServerBridge = global.__SERVERS__[0];
const server2: IServerBridge = global.__SERVERS__[1];
const server3: IServerBridge = global.__SERVERS__[2];
const app = global.__WEB_SERVER__.app;
// include as much servers you need
/ include as much servers you need
newFeature(server1, server2, server3);
});
```