Merge pull request #1506 from bruce-one/reactivate-tests

Remove o.only call to ensure other tests are run.
This commit is contained in:
Leo Horie 2017-01-02 22:10:50 -05:00 committed by GitHub
commit 2f73e9d01d

View file

@ -8,7 +8,7 @@ new function(o) {
o.spec("ospec", function() {
o("skipped", function() {
o(1).equals(1)
o(true).equals(false)
})
o.only(".only()", function() {
o(2).equals(2)
@ -28,7 +28,7 @@ o.spec("ospec", function() {
o.beforeEach(function() {b = 1})
o.afterEach(function() {b = 0})
o.only("assertions", function() {
o("assertions", function() {
var spy = o.spy()
spy(a)