Socket
Socket
Sign inDemoInstall

qunitjs

Package Overview
Dependencies
0
Maintainers
3
Versions
31
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.20.0 to 1.21.0

32

History.md
1.21.0 / 2016-02-01
==================
* Assert: Improve size and speed of QUnit.equiv
* Assert: Fully support Object-wrapped primitives in deepEqual
* Assert: Register notOk as a non-negative assertion
* CSS: Fix hidden test results under static parents
* Core: Improve regular expression comparisons
* Core: Support filtering by regular expression
* Test: Prevents skiping tests after rerun reordering
* Tests: Differentiate QUnit.equiv assertions
1.20.0 / 2015-10-27

@@ -12,3 +24,3 @@ ==================

* Core: Implement Nested modules
* Core: Equivalency for desdendants of null constructors
* Core: Equivalency for descendants of null constructors
* HTML Reporter: Adds indicator for filtered test

@@ -268,3 +280,3 @@ * HTML Reporter: Collapse details for successive failed tests

* Cleanup composite addon: Use callback registration instead of overwriting them. Set the correct src on rerun link (and dblclick). Remove the composite test itself, as that was a crazy hack not worth maintaining
* Cleanup reset() test and usage - run testDone callback first, to allow listeneres ignoring reset assertions
* Cleanup reset() test and usage - run testDone callback first, to allow listeners ignoring reset assertions
* Double clicking on composite test rows opens individual test page

@@ -323,7 +335,7 @@ * test-message for all message-bearing API reporting details

* Serialize expected and actual values only when test fails. Speeds up output of valid tests, especially for lots of large objects. Fixes #183
* Fix sourceFromsTacktrace to get the right line in Firefox. Shift the 'error' line away in Chrome to get a match.
* Fix sourceFromsStacktrace to get the right line in Firefox. Shift the 'error' line away in Chrome to get a match.
* Fix references to test/deepEqual.js
* In autorun mode, moduleDone is called without matching moduleStart. Fix issue #184
* Fixture test: allow anything falsy in test as getAttribute in oldIE will return empty string instead of null. We don't really care.
* Keep label and checkbox together ( http://i.imgur.com/5Wk3A.png )
* Keep label and checkbox together ( https://i.imgur.com/5Wk3A.png )
* Add readme for themes

@@ -355,3 +367,3 @@ * Fix bad global in reset()

* Fix globals in test.js, part 2
* Fix globals in test.js. ?tell wwalser to use ?noglobals everyonce in a while
* Fix globals in test.js. ?tell wwalser to use ?noglobals every once in a while
* Extend readme regarding release process

@@ -520,3 +532,3 @@

* Introducing #qunit-fixture element, deprecating the (never documented) #main element. Doesn't require inline styles and is now independent of jQuery.
* Ammending previous commit: Remove jQuery-core specific resets (will be replaced within jQuery testsuite). Fixes issue #19 - QUnit.reset() removes global jQuery ajax event handlers
* Amending previous commit: Remove jQuery-core specific resets (will be replaced within jQuery testsuite). Fixes issue #19 - QUnit.reset() removes global jQuery ajax event handlers
* Remove jQuery-core specific resets (will be replaced within jQuery testsuite). Fixes issue #19 - QUnit.reset() removes global jQuery ajax event handlers

@@ -551,4 +563,4 @@ * Cleaning up rubble from the previous commit.

* Merge branch 'asyncsetup'
* Allowing async setup and teardown. Fixes http://github.com/jquery/qunit/issues#issue/20
* Always output expected and actual result (no reason not to). Fixes http://github.com/jquery/qunit/issues#issue/21
* Allowing async setup and teardown. Fixes https://github.com/jquery/qunit/issues#issue/20
* Always output expected and actual result (no reason not to). Fixes https://github.com/jquery/qunit/issues#issue/21
* More changes to the detection of types in jsDump's typeOf.

@@ -577,3 +589,3 @@ * Change the typeOf checks in QUnit to be more accurate.

* Fixed problem where double-clicking an entry in IE caused an error to occur.
* Path for http://dev.jquery.com/ticket/5426 - fix the microformat test result
* Path for https://dev.jquery.com/ticket/5426 - fix the microformat test result
* Fixed test() to use 'expected' 2nd param

@@ -640,3 +652,3 @@ * Remove the named function expressions, to stop Safari 2 from freaking out. Fixes #5.

* QUnit: implemented error handling for Opera as proposed by #3628
* qunit: fix for http://dev.jquery.com/ticket/3215 changing wording of testresults, to something more positive (x of y passed, z failed)
* qunit: fix for https://dev.jquery.com/ticket/3215 changing wording of testresults, to something more positive (x of y passed, z failed)
* QUnit: testrunner.js: Ensures equality of types (String, Boolean, Number) declared with the 'new' prefix. See comments #3, #4 and #5 on http://philrathe.com/articles/equiv

@@ -643,0 +655,0 @@ * qunit: wrap name of test in span when a module is used for better styling

@@ -5,7 +5,7 @@ {

"description": "An easy-to-use JavaScript Unit Testing framework.",
"version": "1.20.0",
"homepage": "http://qunitjs.com",
"version": "1.21.0",
"homepage": "https://qunitjs.com",
"author": {
"name": "jQuery Foundation and other contributors",
"url": "https://github.com/jquery/qunit/blob/1.20.0/AUTHORS.txt"
"url": "https://github.com/jquery/qunit/blob/1.21.0/AUTHORS.txt"
},

@@ -34,3 +34,3 @@ "repository": {

"commitplease": "2.0.0",
"grunt": "0.4.2",
"grunt": "0.4.5",
"grunt-concurrent": "2.0.3",

@@ -40,3 +40,3 @@ "grunt-contrib-concat": "0.3.0",

"grunt-contrib-watch": "0.5.3",
"grunt-coveralls": "0.3.0",
"grunt-coveralls": "1.0.0",
"grunt-git-authors": "3.0.0",

@@ -43,0 +43,0 @@ "grunt-jscs": "0.8.1",

[![Build Status](https://travis-ci.org/jquery/qunit.svg?branch=master)](https://travis-ci.org/jquery/qunit) [![Coverage Status](https://coveralls.io/repos/jquery/qunit/badge.svg)](https://coveralls.io/github/jquery/qunit)
# [QUnit](http://qunitjs.com) - A JavaScript Unit Testing Framework.
# [QUnit](https://qunitjs.com) - A JavaScript Unit Testing Framework.

@@ -25,3 +25,3 @@ QUnit is a powerful, easy-to-use, JavaScript unit testing framework. It's used by the jQuery

For related discussions, visit the
[QUnit and Testing forum](http://forum.jquery.com/qunit-and-testing).
[QUnit and Testing forum](https://forum.jquery.com/qunit-and-testing).

@@ -36,3 +36,3 @@ ## Development

To run `grunt`, you need [Node.js](http://nodejs.org/download/), which includes `npm`, then `npm install -g grunt-cli`. That gives you a global grunt binary. For additional grunt tasks, also run `npm install`.
To run `grunt`, you need [Node.js](https://nodejs.org/download/), which includes `npm`, then `npm install -g grunt-cli`. That gives you a global grunt binary. For additional grunt tasks, also run `npm install`.

@@ -39,0 +39,0 @@ ## Releases

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc