Skip to content

Commit

Permalink
Make data connection for S3 model sources AWS-unspecific
Browse files Browse the repository at this point in the history
  • Loading branch information
manaswinidas committed Jul 6, 2023
1 parent 13e5a86 commit 7a12074
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,8 @@ test('Deploy model', async ({ page }) => {
await page.getByText('New data connection').click();
await expect(await page.getByRole('button', { name: 'Deploy', exact: true })).toBeDisabled();
await page.getByRole('textbox', { name: 'Field list Name' }).fill('Test Name');
await page.getByRole('textbox', { name: 'Field list AWS_ACCESS_KEY_ID' }).fill('test-key');
await page
.getByRole('textbox', { name: 'Field list AWS_SECRET_ACCESS_KEY' })
.fill('test-secret-key');
await page.getByRole('textbox', { name: 'Field list Access-Key' }).fill('test-key');
await page.getByRole('textbox', { name: 'Field list Secret-Key' }).fill('test-secret-key');
await expect(await page.getByRole('button', { name: 'Deploy', exact: true })).toBeEnabled();
});

Expand Down

0 comments on commit 7a12074

Please sign in to comment.