Skip to main content

All Questions

0 votes
0 answers
215 views

Squirejs : requirejs is not defined

We have an amd/requirejs based web app. We came to a point to add a unit testing to our code. Googling returned that squireJs is best amd-require based mocking library. after installing, The problem ...
ISkandar's user avatar
0 votes
1 answer
1k views

"define is not defined" - jasmine-node requirejs in Nodejs

I am trying to run jasmine tests on files that are using requirejs. I have a require.config.js file which provides all the configuration for the requirejs and I am passing to this command to run the ...
Nephilim700's user avatar
0 votes
1 answer
65 views

Jasmine & requirejs support for multi modules?

I am currently using Jasmine ("jasmine": "^2.4.1") with Node v6.1.0 I am both trying to provide and consume multiple modules in one file - however keep getting errors like object undefined or null ...
shenku's user avatar
  • 12.3k
0 votes
0 answers
81 views

Running Jasmine tests from Node against code that uses RequireJS

Is it possible to run Jasmine from Node to test code that uses RequireJS? I am using the Jasmine NPM. I can run some tests from Node but can't work out how to test my code that uses RequireJS. V2 of ...
James's user avatar
  • 71
1 vote
1 answer
2k views

How to start jasmine tests with grunt?

I want to create a grunt task for running jasmine tests automatically when the code changed. For AMD support I installed grunt-template-jasmine-requirejs. I added these lines to my gruntfile: connect:...
Garrarufa's user avatar
  • 1,205
1 vote
0 answers
1k views

require.config TypeError: undefined is not a function

I want to write some tests with Jasmine. Therefore I first want to load RequireJS. Thus I put a reference in the Jasmine.json file: { "spec_dir": "spec", "spec_files": [ "**/*[sS]pec.js" ], ...
Garrarufa's user avatar
  • 1,205
1 vote
0 answers
134 views

Karma: project using requirejs

I'm newbie using Karma+Jasmine and I'm working in a project which uses requirejs to load JavaScript modules. When I run Karma it shown the following error: C:\node\myproject λ node node_modules/karma/...
Miguel Q.'s user avatar
  • 597
5 votes
2 answers
1k views

How can I get istanbul working with node, mocha, jasmine and require js

I have an existing test suite that runs fine in node.js using mocha, require and jasmine, with the tests being run via a psake powershell script. I am attempting to add test coverage, so to run the ...
user2576666's user avatar
6 votes
2 answers
4k views

Grunt test for UMD

I'm trying to figure out the best approach to testing a Javascript module definition using a UMD factory, similar to this: https://github.com/umdjs/umd/blob/master/returnExportsGlobal.js I don't want ...
badsyntax's user avatar
  • 9,592
2 votes
0 answers
1k views

testing require modules with jasmine in nodejs

I ma trying to load require modules in node to test with jasmine. Hers my spec runner var coffee, isVerbose, jasmine, key, showColors, sys, i, len, jasmine = ...
rigaman's user avatar
  • 151
3 votes
2 answers
3k views

How to configure RequireJS (require.config()) with jasmine-node?

I have an init file that provides a function that bootstraps RequireJS via require.config(). The configuration ends up looking something (mostly) like this: ... config = baseUrl: sysDir + 'lib/' ...
Xavura's user avatar
  • 164