Skip to content

Commit

Permalink
Renaming activity creator to activity preview
Browse files Browse the repository at this point in the history
  • Loading branch information
houshuang committed Jan 14, 2019
1 parent 70f26c4 commit a16d21e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cypress/integration/example_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe('Logging in', function() {
});
it.only('preview', function() {
cy.visit('http://localhost:3000/teacher?login=teacher');
cy.contains('Activity Creator').click();
cy.contains('Activity Preview').click();
cy.get('.listitem').then(x => {
x.each(function() {
if (this.innerText !== 'Dashboard activity') {
Expand Down
2 changes: 1 addition & 1 deletion frog/imports/client/App/TopBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class TopBarController extends React.Component<
{ name: 'Graph Editor', to: '/teacher/graph' },
{ name: 'Sessions', to: '/teacher/orchestration' },
{
name: 'Activity Creator',
name: 'Activity Preview',
to: '/teacher/preview'
}
];
Expand Down

0 comments on commit a16d21e

Please sign in to comment.