Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Composer/cypress/integration/LeftNavBar.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ context('Left Nav Bar', () => {

it('can expand left Nav Bar', () => {
cy.findByTestId('LeftNavButton').click();
cy.findByTestId('LeftNav-CommandBarButtonDesign Flow').should('exist');
cy.findByTestId('LeftNav-CommandBarButtonDesign').should('exist');
cy.findByTestId('LeftNav-CommandBarButtonBot Responses').click();
cy.url().should('include', 'language-generation');
cy.findByTestId('LeftNav-CommandBarButtonUser Input').click();
Expand Down
2 changes: 1 addition & 1 deletion Composer/cypress/integration/NewDialog.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ context('Creating a new Dialog', () => {
beforeEach(() => {
cy.visit('/home');
cy.createBot('TodoSample');
cy.findByTestId('LeftNav-CommandBarButtonDesign Flow').click();
cy.findByTestId('LeftNav-CommandBarButtonDesign').click();
});

it('can create a new dialog from project tree', () => {
Expand Down
2 changes: 1 addition & 1 deletion Composer/cypress/integration/NotificationPage.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ context('Notification Page', () => {
});

it('can show dialog expression error ', () => {
cy.visitPage('Design Flow');
cy.visitPage('Design');

cy.findByTestId('ProjectTree').within(() => {
cy.findByText('WelcomeUser').click();
Expand Down
2 changes: 1 addition & 1 deletion Composer/cypress/integration/Onboarding.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ context('Onboarding', () => {
cy.visitPage('Settings');
cy.findByText('App Settings').click();
cy.findByLabelText('Onboarding').click();
cy.visitPage('Design Flow');
cy.visitPage('Design');
});

it('walk through product tour teaching bubbles', () => {
Expand Down
2 changes: 1 addition & 1 deletion Composer/cypress/integration/TriggerCreation.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ context('Creating a new trigger', () => {
});

it('can create different kinds of triggers ', () => {
cy.visitPage('Design Flow');
cy.visitPage('Design');
cy.findByTestId('recognizerTypeDropdown').click();
cy.findByText('Regular Expression').click();

Expand Down
2 changes: 1 addition & 1 deletion Composer/packages/client/src/utils/pageLinks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const topLinks = (projectId: string, openedDialogId: string) => {
{
to: `/bot/${projectId}/dialogs/${openedDialogId}`,
iconName: 'SplitObject',
labelName: formatMessage('Design Flow'),
labelName: formatMessage('Design'),
exact: false,
disabled: !botLoaded,
},
Expand Down
4 changes: 2 additions & 2 deletions docs/olddocs/testing_debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ To get started, load up a bot from the list of bots via the open dialog in the h

![Home page](./Assets/testing-debugging-openbot.png)

Open success, the application will navigate to the Design Flow page with your bot's entry dialog rendered visually for you to inspect and edit.
Open success, the application will navigate to the Design page with your bot's entry dialog rendered visually for you to inspect and edit.

You can immediate start the sample bot by clicking the Start Bot button in the top-right of the application window. Give it a try:

![Design flow](./Assets/testing-debugging-designflow.png)
![Design](./Assets/testing-debugging-designflow.png)

After a brief loading period, you'll see a new icon "Test in Emulator", clicking it will launch a browser dialog to start your local installation of the Bot Framework Emulator and connect to the bot that you just started in the previous step.

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/tutorial-lg.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Let's start by adding some variation to the welcome message.

> This creates a new Language Generation template named `DescribeWeather`. This template enables the LG system to use the data returned from the weather service that was placed into the weather.weather variable to respond to the user with a more user friendly response.

9. Select **Design Flow** from the Composer Menu.
9. Select **Design** from the Composer Menu.

10. Select the **getWeather** dialog, then its **BeginDialog** trigger in the **Navigation** pane.

Expand Down