Skip to content
Permalink
Browse files
Moved Script Files
All the scripts files needed to run the acceptance tests were saved in
the project root directory.

These have now been moved to a scripts director in the acceptanceTests
directory
  • Loading branch information
aa7401 committed Nov 23, 2019
1 parent c94b4b1 commit b785401564c84d688377b83fad2ade79a525fe49
Show file tree
Hide file tree
Showing 7 changed files with 2,192 additions and 1,103 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -25,16 +25,16 @@ beforeAll( async() => {
page = await browser.newPage()
har = new PuppeteerHar(page)
await page.setViewport({ width, height })
await shell.exec('beforeAll.sh')
await shell.exec('acceptanceTests/scripts/beforeAll.sh')
})

afterAll( async() => {
browser.close()
await shell.exec('afterAll.sh')
await shell.exec('acceptanceTests/scripts/afterAll.sh')
})

beforeEach(async() => {
await shell.exec('beforeEach.sh')
await shell.exec('acceptanceTests/scripts/beforeEach.sh')
})

describe('Registering', () => {

0 comments on commit b785401

Please sign in to comment.