Skip to content

Commit

Permalink
Feature/ttk test runner demo friendly (#115)
Browse files Browse the repository at this point in the history
* Implemented Demo friendly Test Runner

* Bumped up the version and resolved audits
  • Loading branch information
vijayg10 committed Aug 6, 2021
1 parent 5d49add commit 51f3ad7
Show file tree
Hide file tree
Showing 8 changed files with 6,603 additions and 6,021 deletions.
12,034 changes: 6,017 additions & 6,017 deletions audit-resolve.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ml-testing-toolkit-ui",
"version": "13.2.2",
"version": "13.3.0",
"description": "Mojaloop Testing Toolkit Web User Interface",
"main": "index.js",
"repository": {
Expand Down
2 changes: 2 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import 'antd/dist/antd.css';

import Login from './views/login/Login.jsx';
import MobileSimulator from "./views/demos/MobileSimulator/MobileSimulator.jsx";
import DemoTestRunner from "./views/demos/DemoTestRunner/DemoTestRunner.jsx";


const axios = require('axios').default
Expand Down Expand Up @@ -97,6 +98,7 @@ function App() {
<Switch>
<Route path="/admin" render={props => <AdminLayout {...props} handleLogout={handleLogout} />} />
<Route exact path='/mobilesimulator' render={props => <MobileSimulator {...props} />} />
<Route exact path='/demotestrunner' render={props => <DemoTestRunner {...props} />} />
<Redirect from='/' to='/admin/index' />
</Switch>
}
Expand Down
Loading

0 comments on commit 51f3ad7

Please sign in to comment.