Commit 9f7fa72e authored by BryceLTaylor's avatar BryceLTaylor

check rate limit for studio creation integration test

parent 8a495ee8
...@@ -10,8 +10,10 @@ const { ...@@ -10,8 +10,10 @@ const {
let username = process.env.SMOKE_USERNAME + '1'; let username = process.env.SMOKE_USERNAME + '1';
let password = process.env.SMOKE_PASSWORD; let password = process.env.SMOKE_PASSWORD;
let remote = process.env.SMOKE_REMOTE || false; let remote = process.env.SMOKE_REMOTE || false;
let rootUrl = process.env.ROOT_URL || 'https://scratch.ly'; let rootUrl = process.env.ROOT_URL || 'https://scratch.ly';
let myStuffURL = rootUrl + '/mystuff'; let myStuffURL = rootUrl + '/mystuff';
let rateLimitCheck = process.env.RATE_LIMIT_CHECK || rootUrl;
if (remote){ if (remote){
jest.setTimeout(60000); jest.setTimeout(60000);
...@@ -88,6 +90,7 @@ describe('www-integration my_stuff', () => { ...@@ -88,6 +90,7 @@ describe('www-integration my_stuff', () => {
}); });
test('+ New Studio button should take you to the studio page', async ()=>{ test('+ New Studio button should take you to the studio page', async ()=>{
await driver.get(rateLimitCheck);
await driver.get(myStuffURL); await driver.get(myStuffURL);
await clickXpath('//form[@id="new_studio"]/button[@type="submit"]'); await clickXpath('//form[@id="new_studio"]/button[@type="submit"]');
await driver.sleep(500); await driver.sleep(500);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment