Jestem bardzo nowy, aby zareagować i napisałem kod używając React 14 bez żadnego transpilera. Teraz chcę użyć Karma-Jasmine do testowania jednostkowego, ale wygląda na to, że mój test kończy się renderowaniem aplikacji.Testowanie jednostek reaguje za pomocą Karmy i Jasmine
Mam następującą strukturę:
node_modules
MyApp/
/js/ *.js
/test/*.js
Karma.conf.js
package.json
index.html
Moja index.html:
<html>
<div id="content"></div>
<script src="js/react-0.14.7.js"></script>
<script src="js/react-dom-0.14.7.js"></script>
<script src="js/App.js"></script>
<script src="js/main.js"></script>
<link rel="stylesheet" href="style.css">
</body>
</html>
Moi main.js:
ReactDOM.render(React.createElement(App), document.getElementById('content'))
My App potem jest jak poniżej:
var h = React.createElement;
var Command = React.createClass({
render: function(){
return h(....)
}
})
mojego kodu testu jest następująca:
describe('App', function() {
beforeEach(function() {
fixture.load('index.htm');
});
beforeEach(function() {
ReactDOM.render(React.createElement(App), document.getElementById('content'));
});
it('accepts elements', function() {
document.getElementById('x').value = 1;
document.getElementById('y').value = 2;
document.getElementById('setbtn').click();
});
});
I tu jest błąd:
Uncaught ReferenceError: App is not defined
at main.js:2
(anonymous) @ main.js:2
debug.html:1 (WEB_PAGE context) Lazy require of app.binding did not set the binding field
.
.
.
ReferenceError: fixture is not defined
at UserContext.<anonymous> (main.test.js:6)
debugowanie Karma pokazuje moje pliki zostały załadowane jak widzę funkcje w moich komponentów. Zainstalowałem Html2js i dodałem do mojego pliku Karma.conf.js. Przeczytałem większość dokumentów w Internecie, ale nie pomogły.
Co robię źle? I
'Uncaught ReferenceError: Aplikacja nie jest zdefiniowana' - wygląda na to, że eksportujesz ją jako globalną zmienną o nazwie" Command "zamiast" App ". Musisz również uwzględnić karma-fixture (patrz instrukcja instalacji na github.com/billtrik/karma-fixture). Na koniec Twój HTML jest zniekształcony. Brak tagu otwierającego ciało –