-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
df69288
commit 60d7e1e
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ const selectors = require('./selectors'); | |
const puppeteer = require("puppeteer"); | ||
|
||
// INFO | ||
const USERNAME = process.env.USERNAME || '[email protected]' | ||
const PASSWORD = process.env.PASSWORD || 'Pokemon9897!' | ||
const USERNAME = process.env.USERNAME | ||
const PASSWORD = process.env.PASSWORD | ||
const baseURL = 'https://composer.sckan.dev.metacell.us/' | ||
|
||
|
||
|
@@ -707,6 +707,7 @@ describe('End to End Tests', () => { | |
it('Check Population Diagram', async () => { | ||
console.log('Checking Population Diagram ...') | ||
await page.waitForTimeout(1000) | ||
await page.waitForSelector('button[aria-label="Reset to default visualisation"]', {hidden:false}) | ||
await page.waitForSelector('div.node', {hidden:false}) | ||
const nodes = await page.$$('div.node'); | ||
//expect(nodes.length).toBe(3); | ||
|