Consistent naming of Mithril.js

This commit is contained in:
Stephan Hoyer 2022-02-18 09:08:10 +01:00
parent 7b1fda5b66
commit 885b3f9442
48 changed files with 269 additions and 269 deletions

View file

@ -12,7 +12,7 @@ Approaches you can use to testing your Mithril.js-based apps, including technolo
### Setup
Testing Mithril applications is relatively easy. The easiest way to get started is with [ospec](https://github.com/MithrilJS/ospec), [mithril-query](https://github.com/MithrilJS/mithril-query), and JSDOM. Installing those is pretty easy: open up a terminal and run this command.
Testing Mithril.js applications is relatively easy. The easiest way to get started is with [ospec](https://github.com/MithrilJS/ospec), [mithril-query](https://github.com/MithrilJS/mithril-query), and JSDOM. Installing those is pretty easy: open up a terminal and run this command.
```bash
npm install --save-dev ospec mithril-query jsdom
@ -41,13 +41,13 @@ var dom = new jsdom.JSDOM("", {
pretendToBeVisual: true,
})
// Fill in the globals Mithril needs to operate. Also, the first two are often
// Fill in the globals Mithril.js needs to operate. Also, the first two are often
// useful to have just in tests.
global.window = dom.window
global.document = dom.window.document
global.requestAnimationFrame = dom.window.requestAnimationFrame
// Require Mithril to make sure it loads properly.
// Require Mithril.js to make sure it loads properly.
require("mithril")
// And now, make sure JSDOM ends when the tests end.
@ -130,7 +130,7 @@ o.spec("addition", function() {
})
```
Just like you can unit test simple stuff like that, you can unit test Mithril components, too. Suppose you have this component:
Just like you can unit test simple stuff like that, you can unit test Mithril.js components, too. Suppose you have this component:
```javascript
// MyComponent.js