Skip to content

Commit

Permalink
Merge pull request #37 from tonlabs/0.25.1-rc
Browse files Browse the repository at this point in the history
Version 0.25.1
  • Loading branch information
melsomino authored Jul 27, 2020
2 parents 040e6a2 + 649df63 commit 67dacbb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Release Notes
All notable changes to this project will be documented in this file.

## 0.25.1 - Jul 27, 2020

### Fixed
- testApp: run puppeeter with '--no-sandbox --disable-setuid-sandbox' to meet Docker requirements

## 0.25.0 - Jul 8, 2020

### New
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ton-client-web-js",
"version": "0.25.0",
"version": "0.25.1",
"description": "TON Client Library for Web",
"scripts": {
"install": "node install.js"
Expand Down
11 changes: 10 additions & 1 deletion testApp/run-suite.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,16 @@ function startWebPackDevServer() {

async function main() {
await startWebPackDevServer();
const browser = await puppeteer.launch();
const browser = await puppeteer.launch({
args: [
// Required for Docker version of Puppeteer
'--no-sandbox',
'--disable-setuid-sandbox',
// This will write shared memory files into /tmp instead of /dev/shm,
// because Docker’s default for /dev/shm is 64MB
'--disable-dev-shm-usage'
]
});
const page = await browser.newPage();
page.on('console', (msg) => {
const text = `${msg.text()}\n`;
Expand Down

0 comments on commit 67dacbb

Please sign in to comment.