mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-24 21:15:51 +01:00
fix: remove engines from ui-theme
This commit is contained in:
parent
cca1f7f32a
commit
ad3151c3f3
5
.changeset/fuzzy-drinks-taste.md
Normal file
5
.changeset/fuzzy-drinks-taste.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
'@verdaccio/ui-theme': minor
|
||||
---
|
||||
|
||||
fix: remove engines from ui-theme
|
@ -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",
|
||||
|
@ -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);
|
||||
});
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user