Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
a-b-r-o-w-n committed May 5, 2021
1 parent 61f05eb commit a499590
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ describe('skill dispatcher', () => {
it('should update setting.skill on local skills with "Composer Local" chosen as endpoint', async () => {
await act(async () => {
const botEndpoints = {};
botEndpoints[`${skillIds[0]}`] = 'http://localhost:3978/api/messages';
botEndpoints[`${skillIds[1]}`] = 'http://localhost:3979/api/messages';
botEndpoints[`${skillIds[0]}`] = { url: 'http://localhost:3978/api/messages', port: 3978 };
botEndpoints[`${skillIds[1]}`] = { url: 'http://localhost:3979/api/messages', port: 3979 };
renderedComponent.current.setters.setBotEndpoints(botEndpoints);
renderedComponent.current.setters.setTodoSkillData({
location: '/Users/tester/Desktop/LoadedBotProject/Todo-Skill',
Expand Down

0 comments on commit a499590

Please sign in to comment.