Skip to content

Commit

Permalink
chore: bump heap size for chat test app deployment (#2854)
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinbarron committed Nov 14, 2023
1 parent 3c71e91 commit a168e96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/pr-chat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
jobs:
react-contoso:
runs-on: ubuntu-latest
# increase node heap size to ensure that the build can succeed
env:
NODE_OPTIONS: '--max_old_space_size=9182'

strategy:
matrix:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ describe('mgt-person - tests', () => {
await waitUntil(
() => person.shadowRoot.querySelector('div[data-testid="flyout-slot"]'),
'mgt-person failed to render flyout',
{ interval: 500, timeout: 10000 }
{ interval: 500, timeout: 15000 }
);
const flyout = person.shadowRoot.querySelector('div[data-testid="flyout-slot"]');
await expect(flyout).dom.to.be.equal(`
Expand Down

0 comments on commit a168e96

Please sign in to comment.