Skip to content

prometheanSolutions/frontend

 
 

Repository files navigation

Build

Run Tests

npm run test
KARMA_SPEC='**/d3-overview-graph.test.js' npm run test:single

Architecture

Redux base model:

{
    blockchain: {
        transactions: [],
        utxos: [],
    }
}

Testing

There is the possibility of using test data. One way is filling the redux store directly with the test data.

Another way is mocking the 'api' to provide the test data objects.

const api = createApiMock(basicTestData);

Project structure

'src/model`

Redux model of application - global state

'src/modules'

Processing modules:

  • API.
  • Generation of the redux model.

'src/ui'

User Interface:

  • Graphs (overview, detailed)
  • Widgets

'src/utils'

Utility files

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 97.5%
  • CSS 2.2%
  • HTML 0.3%