File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/amazonq/test/e2e_new/amazonq/tests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,22 +21,22 @@ describe('Amazon Q Chat Basic Functionality', function () {
2121 await closeAllTabs ( webviewView )
2222 } )
2323
24- it ( 'Chat Prompt Test ' , async ( ) => {
24+ it ( 'Allows User to Chat with AmazonQ ' , async ( ) => {
2525 await writeToChat ( 'Hello, Amazon Q!' , webviewView )
2626 const responseReceived = await waitForChatResponse ( webviewView )
2727 if ( ! responseReceived ) {
2828 throw new Error ( 'Chat response not received within timeout' )
2929 }
3030 console . log ( 'Chat response detected successfully' )
3131 } )
32- it ( 'Multiple Chat Test ' , async ( ) => {
32+ it ( 'Allows User to Add Multiple Chat Tabs ' , async ( ) => {
3333 console . log ( 'Starting Multiple Chat Test' )
3434 for ( let i = 0 ; i < 3 ; i ++ ) {
3535 const addChat = await webviewView . findWebElement ( By . css ( '.mynah-ui-icon.mynah-ui-icon-plus' ) )
3636 await addChat . click ( )
3737 }
3838 } )
39- it ( 'View History' , async ( ) => {
39+ it ( 'Allows User to View Chat History' , async ( ) => {
4040 console . log ( 'Starting View History Test' )
4141 const viewHistory = await webviewView . findWebElement ( By . css ( '.mynah-ui-icon.mynah-ui-icon-history' ) )
4242 await viewHistory . click ( )
You can’t perform that action at this time.
0 commit comments