Skip to content

Commit

Permalink
chore: bump version to v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
arianrhodsandlot committed Oct 15, 2023
1 parent d3df1df commit 6dc109d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nostalgist",
"description": "Nostalgist.js is a JavaScript library that allows you to run emulators of retro consoles within web browsers.",
"version": "0.4.0",
"version": "0.4.1",
"author": {
"name": "arianrhodsandlot",
"email": "theguidanceofawhitetower@gmail.com"
Expand Down
6 changes: 3 additions & 3 deletions tests/e2e/instance.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,17 +94,17 @@ test.describe('instance methods', () => {

// show the game info
await page.getByText('pressA', { exact: true }).click()
await page.waitForTimeout(100)
await page.waitForTimeout(300)
await expect(canvas).toHaveScreenshot('press-a.png')

// hide the game info
await page.getByText('pressA', { exact: true }).click()
await page.waitForTimeout(100)
await page.waitForTimeout(300)
await expect(canvas).toHaveScreenshot('press-pristine.png')

// enter the game
await page.getByText('pressStart', { exact: true }).click()
await page.waitForTimeout(100)
await page.waitForTimeout(300)
await expect(canvas).toHaveScreenshot('press-start.png')
})
})

0 comments on commit 6dc109d

Please sign in to comment.