jasmine-jquery icon indicating copy to clipboard operation
jasmine-jquery copied to clipboard

jQuery matchers and fixture loader for Jasmine framework

Results 67 jasmine-jquery issues
Sort by recently updated
recently updated
newest added

Hi, I've been fiddling around with the config for a while now, and can't seem to get it to work. Karma.conf.js: ``` ... frameworks: ['jasmine', 'jasmine-jquery'], plugins:[ 'karma-jasmine', 'karma-webpack', 'jasmine-jquery'],...

Running `npm audit` gives me: ``` ├ Critical │ Potential Command Injection │ ├───────────────┼──────────────────────────────────────────────────────────────┤ │ Package │ shell-quote │ ├───────────────┼──────────────────────────────────────────────────────────────┤ │ Patched in │ >=1.6.1 │ ├───────────────┼──────────────────────────────────────────────────────────────┤ │ Dependency of...

There are 17 open pull requests from as far back as 2013. I assume this library is not maintained anymore.

I am trying to move from using Karma to using Jest for our testing. We have some existing specs that are using jasmine-jquery to load html files to set up...

When I set the "lang" attribute on an element, it does not get set. Here is a test that won't pass: ``` // source code $(D.CONTAINER).attr('lang', lang); // test expect($(D.CONTAINER).attr('lang')).toEqual('ja-jp');...

The [doc](https://github.com/velesin/jasmine-jquery/blob/master/README.md#json-fixtures) states: > Because a deep copy of Javascript objects can be a little tricky, this module will refetch data each time you call load. If you modify the...

As the title suggests, when you bind an event using this syntax: ``` $('.my-parent-element').on('click', '.child-element', function(e){ // Do cool things }); ``` This doesn't work: ``` expect($(".child-element")).toHandle('click') ``` But this...

Every time an event spy is created (e.g. in beforeEach block), a new event handler is added to the selected element. If that element persists between tests, multiple spy handlers...

# laravel when saving sass giving error app.js:sourcemap:50945 Uncaught TypeError: Cannot set property '__file' of undefined at Object.defineProperty.value (app.js:sourcemap:50945) at __webpack_require__ (app.js:sourcemap:20) at Object.VERSION (app.js:sourcemap:1139) at __webpack_require__ (app.js:sourcemap:20) at Object....

I am trying to `validate` username field but post to php not working.returns error xhr failed loading $('#username').blur(function(){ var u = $("#username").val(); if(u != ""){ $("#unamestatus").html('checking ...'); $.ajax({ url:"php/name_check.php", method:"POST",...