Skip to content

Commit 51f3ad7

Browse files
authored
Feature/ttk test runner demo friendly (#115)
* Implemented Demo friendly Test Runner * Bumped up the version and resolved audits
1 parent 5d49add commit 51f3ad7

File tree

8 files changed

+6603
-6021
lines changed

8 files changed

+6603
-6021
lines changed

audit-resolve.json

Lines changed: 6017 additions & 6017 deletions
Large diffs are not rendered by default.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ml-testing-toolkit-ui",
3-
"version": "13.2.2",
3+
"version": "13.3.0",
44
"description": "Mojaloop Testing Toolkit Web User Interface",
55
"main": "index.js",
66
"repository": {

src/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ import 'antd/dist/antd.css';
3535

3636
import Login from './views/login/Login.jsx';
3737
import MobileSimulator from "./views/demos/MobileSimulator/MobileSimulator.jsx";
38+
import DemoTestRunner from "./views/demos/DemoTestRunner/DemoTestRunner.jsx";
3839

3940

4041
const axios = require('axios').default
@@ -97,6 +98,7 @@ function App() {
9798
<Switch>
9899
<Route path="/admin" render={props => <AdminLayout {...props} handleLogout={handleLogout} />} />
99100
<Route exact path='/mobilesimulator' render={props => <MobileSimulator {...props} />} />
101+
<Route exact path='/demotestrunner' render={props => <DemoTestRunner {...props} />} />
100102
<Redirect from='/' to='/admin/index' />
101103
</Switch>
102104
}

0 commit comments

Comments
 (0)