Skip to content

Commit

Permalink
Temp ci changes
Browse files Browse the repository at this point in the history
  • Loading branch information
owenpearson committed Jul 4, 2022
1 parent d0553cb commit 10957ba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion test/rest/push.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ define(['ably', 'shared_helper', 'async', 'chai'], function (Ably, helper, async
},
};

describe('rest/push', function () {
describe.only('rest/push', function () {
this.timeout(60 * 1000);

before(function (done) {
Expand Down
4 changes: 4 additions & 0 deletions test/support/runPlaywrightTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ const runTests = async (browserType) => {
console.log(detail);
});

page.on('console', msg => {
console.log(msg.text());
});

// Expose a function inside the playwright browser to exit with the right status code when tests pass/fail
page.exposeFunction('onTestResult', ({ detail }) => {
console.log(`${browserType.name()} tests complete: ${detail.passes}/${detail.total} passed`);
Expand Down

0 comments on commit 10957ba

Please sign in to comment.