Code Monkey home page Code Monkey logo

test_it's People

Contributors

douglasmeyer avatar liranuna avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

burrows wavify

test_it's Issues

Node.js: T.inspect of Array results into '{}'

TestIt.inspect will return a '{}' for empty arrays in nodejs because of a bad javascript parctice:

var TestIt = require('test_it');
TestIt.inspect([])
'{}'

The problem is caused because of a bad Javascript practice in TestIt source (test_it.js line 347) - you are comparing the constructor to Array which is only good if you are in a browser and do not work across IFrames.

The correct way to compare an array is to either use Array.isArray (not supported everywhere) or roll your own:

function isArray(instance) {
    return Object.prototype.toString.call(instance) == '[object Array]';
}

TestIt 2.0

What is to come has some seriously helpful proposals for Testit.

  • Easier to add custom assertions
  • Easier to write extensions
  • More standard reporting
  • Easier to extend
  • Provide default styling

Not entirely sold on the names for TestIt.extend or TestIt.bind, but I think they make sense.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.