for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
describe('Configured Model Generator', function () {
it('Auto model should exist', function() {
expect(Test.model.Auto).toBeDefined();
Test
/** global: Test */
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.
});
it('Car model should exist', function() {
expect(Test.TestBundle.Entity.Car).toBeDefined();
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.