fix(core): update

This commit is contained in:
Philipp Kunz 2021-08-17 15:42:37 +02:00
parent 49db495bb9
commit 3bc93871f9
3 changed files with 15 additions and 15 deletions

24
package-lock.json generated
View File

@ -12,7 +12,7 @@
"@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartfile": "^8.0.10",
"@pushrocks/smartpromise": "^3.1.6",
"@pushrocks/smartpuppeteer": "^1.0.25",
"@pushrocks/smartpuppeteer": "^1.0.26",
"@pushrocks/smarttime": "^3.0.38"
},
"devDependencies": {
@ -2689,14 +2689,15 @@
"license": "MIT"
},
"node_modules/@pushrocks/smartpuppeteer": {
"version": "1.0.25",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpuppeteer/-/smartpuppeteer-1.0.25.tgz",
"integrity": "sha512-XH85pUpr0TcHQFcjXX892R53NdLgsqF+P3DDPuVrMXwbipBWG1wxlT1JZz3F0d5WXv/wapaPLNo3wEstCTRdYg==",
"version": "1.0.26",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpuppeteer/-/smartpuppeteer-1.0.26.tgz",
"integrity": "sha512-7xegMP/a5QNGU6Xszyr61pW7SPXy3kDIhkTUpiaisusW2T5HdEyZdrnP/sn0MTPJkhR3a9b6VVj1xxkyLKOn6A==",
"license": "MIT",
"dependencies": {
"@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartenv": "^4.0.16",
"puppeteer": "^10.2.0"
"puppeteer": "^10.2.0",
"tree-kill": "^1.2.2"
}
},
"node_modules/@pushrocks/smartrequest": {
@ -14077,7 +14078,6 @@
"version": "1.2.2",
"resolved": "https://verdaccio.lossless.one/tree-kill/-/tree-kill-1.2.2.tgz",
"integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==",
"dev": true,
"license": "MIT",
"bin": {
"tree-kill": "cli.js"
@ -17132,13 +17132,14 @@
"integrity": "sha512-v+RyVpspzYuBcV/aWXqwC03TWYeFLj7aWMG3IBDFmH2ssgug+82KLW/gw2WB2aVOEvmSkfI9OVvOQz2OsLbYlA=="
},
"@pushrocks/smartpuppeteer": {
"version": "1.0.25",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpuppeteer/-/smartpuppeteer-1.0.25.tgz",
"integrity": "sha512-XH85pUpr0TcHQFcjXX892R53NdLgsqF+P3DDPuVrMXwbipBWG1wxlT1JZz3F0d5WXv/wapaPLNo3wEstCTRdYg==",
"version": "1.0.26",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpuppeteer/-/smartpuppeteer-1.0.26.tgz",
"integrity": "sha512-7xegMP/a5QNGU6Xszyr61pW7SPXy3kDIhkTUpiaisusW2T5HdEyZdrnP/sn0MTPJkhR3a9b6VVj1xxkyLKOn6A==",
"requires": {
"@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartenv": "^4.0.16",
"puppeteer": "^10.2.0"
"puppeteer": "^10.2.0",
"tree-kill": "^1.2.2"
}
},
"@pushrocks/smartrequest": {
@ -25682,8 +25683,7 @@
"tree-kill": {
"version": "1.2.2",
"resolved": "https://verdaccio.lossless.one/tree-kill/-/tree-kill-1.2.2.tgz",
"integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==",
"dev": true
"integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A=="
},
"trim-right": {
"version": "1.0.1",

View File

@ -25,7 +25,7 @@
"@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartfile": "^8.0.10",
"@pushrocks/smartpromise": "^3.1.6",
"@pushrocks/smartpuppeteer": "^1.0.25",
"@pushrocks/smartpuppeteer": "^1.0.26",
"@pushrocks/smarttime": "^3.0.38"
},
"files": [

View File

@ -13,11 +13,11 @@ tap.test('should render central.eu', async (tools) => {
await testSSRInstance.renderPage('https://lossless.com');
});
tap.skip.test('should render lossless.com', async () => {
tap.test('should render lossless.com', async () => {
await testSSRInstance.renderPage('https://lossless.com');
});
tap.skip.test('should render https://lossless.gmbh', async () => {
tap.test('should render https://lossless.gmbh', async () => {
const renderedPage = await testSSRInstance.renderPage('https://lossless.gmbh');
console.log(renderedPage);
});