You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>Mutation testing for Node.js and JavaScript.</p>
54
54
<p><strong>Mutode</strong> generates mutants (small changes of code) and runs your tests. If the tests fail, it means the mutant was detected and <strong>killed</strong>; if your tests pass, it means the mutant <strong>survived</strong> and your tests can be improved.</p>
55
-
<p>Read the thesis proposal <ahref="https://docs.google.com/document/d/1V6U-ahLq6faCbtP0DtKukzdnsUC2ZBsL1LWEJvkqUiE/edit?usp=sharing">here</a></p>
55
+
<p>Read the thesis proposal <ahref="https://docs.google.com/document/d/1V6U-ahLq6faCbtP0DtKukzdnsUC2ZBsL1LWEJvkqUiE/edit?usp=sharing"><strong>here</strong></a></p>
56
+
<p><ahref="https://www.youtube.com/watch?v=DILzHOljFj0&feature=youtu.be"><strong>Watch the demo video</strong></a></p>
56
57
<blockquote>
57
58
<p>"It's like a test for your tests!" - @mappum</p>
58
59
<p>"Higher order testing: automated testing for your unit tests" - @albertomiranda</p>
<li>Current supported mutation operators are available <ahref="https://thesoftwaredesignlab.github.io/mutode/module-Mutators.html"><strong>here</strong></a></li>
87
88
<li>General documentation is available <ahref="https://thesoftwaredesignlab.github.io/mutode/"><strong>here</strong></a></li>
<p>Mutates math operators to their inverse. Exponential operator <code>**</code>is mutated to multiplication <code>*</code></p>
418
+
<p>Mutates math and bitwise operators to their inverse. The modulus operator <code>%</code> and the exponential operator <code>**</code>are mutated to multiplication <code>*</code>.</p>
* @description Mutates math operators to their inverse. Exponential operator `**` is mutated to multiplication `*`
63
+
* @description Mutates math and bitwise operators to their inverse. The modulus operator `%` and the exponential operator `**` are mutated to multiplication `*`.
0 commit comments