fix(core): update
This commit is contained in:
parent
318bdd1bd8
commit
d79a5af51a
@ -3,22 +3,21 @@ import { tap, expect } from '@pushrocks/tapbundle';
|
||||
import * as smartbrowser from '../ts/index';
|
||||
let testSmartBrowser: smartbrowser.SmartBrowser;
|
||||
|
||||
tap
|
||||
.test('should instanstiate a new browser ', async () => {
|
||||
tap.test('should instanstiate a new browser ', async () => {
|
||||
testSmartBrowser = new smartbrowser.SmartBrowser();
|
||||
return expect(testSmartBrowser).to.be.instanceof(smartbrowser.SmartBrowser);
|
||||
})
|
||||
});
|
||||
|
||||
tap.test('should start the browser ', async () => {
|
||||
await expect(testSmartBrowser.start()).to.eventually.be.fulfilled;
|
||||
});
|
||||
|
||||
tap.test('should create a PDF from a page', async (tools) => {
|
||||
tap.test('should create a PDF from a page', async tools => {
|
||||
const result = await testSmartBrowser.pdfFromPage('https://lossless.com');
|
||||
expect(result.buffer).to.be.instanceOf(Buffer);
|
||||
});
|
||||
|
||||
tap.test('should produce a valid screenshot', async (tools) => {
|
||||
tap.test('should produce a valid screenshot', async tools => {
|
||||
const result = await testSmartBrowser.screenshotFromPage('https://lossless.com');
|
||||
expect(result.buffer).to.be.instanceOf(Buffer);
|
||||
});
|
||||
|
@ -63,7 +63,6 @@ export class SmartBrowser {
|
||||
});
|
||||
this.smartpdf = new plugins.smartpdf.SmartPdf();
|
||||
await this.smartpdf.start(this.headlessBrowser);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1,2 +1 @@
|
||||
export * from './interfaces.screenshotresult';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user