File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ describe('Routes Component', () => {
27
27
it ( 'should display the History page' , async ( ) => {
28
28
const { findByText, store } = await render ( ) ;
29
29
store . uiStore . goToHistory ( ) ;
30
- expect ( await findByText ( 'Loop History' ) ) . toBeInTheDocument ( ) ;
30
+ expect ( await findByText ( 'History' ) ) . toBeInTheDocument ( ) ;
31
31
expect ( store . router . location . pathname ) . toBe ( '/history' ) ;
32
32
} ) ;
33
33
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ describe('HistoryPage', () => {
18
18
19
19
it ( 'should display the title' , ( ) => {
20
20
const { getByText } = render ( ) ;
21
- expect ( getByText ( 'Loop History' ) ) . toBeInTheDocument ( ) ;
21
+ expect ( getByText ( 'History' ) ) . toBeInTheDocument ( ) ;
22
22
} ) ;
23
23
24
24
it ( 'should display the export icon' , ( ) => {
Original file line number Diff line number Diff line change @@ -39,9 +39,9 @@ describe('Layout component', () => {
39
39
fireEvent . click ( getByText ( 'History' ) ) ;
40
40
expect ( store . router . location . pathname ) . toBe ( '/history' ) ;
41
41
expect ( getByText ( 'History' ) . parentElement ) . toHaveClass ( 'active' ) ;
42
- fireEvent . click ( getByText ( 'Lightning Loop ' ) ) ;
42
+ fireEvent . click ( getByText ( 'Lightning Terminal ' ) ) ;
43
43
expect ( store . router . location . pathname ) . toBe ( '/loop' ) ;
44
- expect ( getByText ( 'Lightning Loop ' ) . parentElement ) . toHaveClass ( 'active' ) ;
44
+ expect ( getByText ( 'Lightning Terminal ' ) . parentElement ) . toHaveClass ( 'active' ) ;
45
45
} ) ;
46
46
47
47
it ( 'should navigate to the Settings page' , ( ) => {
@@ -50,8 +50,8 @@ describe('Layout component', () => {
50
50
fireEvent . click ( getByText ( 'Settings' ) ) ;
51
51
expect ( store . router . location . pathname ) . toBe ( '/settings' ) ;
52
52
expect ( getByText ( 'Settings' ) . parentElement ) . toHaveClass ( 'active' ) ;
53
- fireEvent . click ( getByText ( 'Lightning Loop ' ) ) ;
53
+ fireEvent . click ( getByText ( 'Lightning Terminal ' ) ) ;
54
54
expect ( store . router . location . pathname ) . toBe ( '/loop' ) ;
55
- expect ( getByText ( 'Lightning Loop ' ) . parentElement ) . toHaveClass ( 'active' ) ;
55
+ expect ( getByText ( 'Lightning Terminal ' ) . parentElement ) . toHaveClass ( 'active' ) ;
56
56
} ) ;
57
57
} ) ;
Original file line number Diff line number Diff line change 14
14
"cmps.common.PageHeader.exportTip" : " Download CSV" ,
15
15
"cmps.common.PageHeader.helpTip" : " Take a Tour" ,
16
16
"cmps.history.HistoryPage.backText" : " Lightning Loop" ,
17
- "cmps.history.HistoryPage.pageTitle" : " Loop History" ,
17
+ "cmps.history.HistoryPage.pageTitle" : " History" ,
18
18
"cmps.history.HistoryRowHeader.status" : " Status" ,
19
19
"cmps.history.HistoryRowHeader.amount" : " Amount" ,
20
20
"cmps.history.HistoryRowHeader.type" : " Type" ,
59
59
"cmps.loop.swap.SwapReviewStep.total" : " Total" ,
60
60
"cmps.loop.swap.SwapWizard.backTip" : " Back to Previous" ,
61
61
"cmps.layout.NavMenu.menu" : " Menu" ,
62
- "cmps.layout.NavMenu.loop" : " Lightning Loop " ,
62
+ "cmps.layout.NavMenu.loop" : " Lightning Terminal " ,
63
63
"cmps.layout.NavMenu.history" : " History" ,
64
64
"cmps.layout.NavMenu.settings" : " Settings" ,
65
65
"cmps.NodeStatus.title" : " Node Status" ,
You can’t perform that action at this time.
0 commit comments