Giter VIP home page Giter VIP logo

jasmine's Introduction

A JavaScript Testing Framework

Jasmine is a Behavior Driven Development testing framework for JavaScript. It does not rely on browsers, DOM, or any JavaScript framework. Thus it's suited for websites, Node.js projects, or anywhere that JavaScript can run.

Documentation & guides live here: http://pivotal.github.com/jasmine/

Component notes

The best way to use this component is to define it as a dev dependency in your component.json file.

  "development": {
    "bestander/jasmine": "*"
  }

Then in the spec-runner HTML do

    <!-- no links to jasmine standalone component -->

    <!-- path to a `component(1)` built package -->
    <script type="text/javascript" src="../build/build-dev.js"></script>
    <script type="text/javascript" src="../build/build-dev.css"></script>

    <!-- list of your test spec files -->
    <script type="text/javascript" src="logic.spec.js"></script>
    <script type="text/javascript" src="moreLogic.spec.js"></script>
    <script type="text/javascript">
        (function () {
          var currentWindowOnload;
          var htmlReporter;
          var jasmine = require("<host name>/deps/jasmine").jasmine;
          var jasmineEnv = jasmine.getEnv();
          jasmineEnv.updateInterval = 1000;

          htmlReporter = new jasmine.HtmlReporter();

          jasmineEnv.addReporter(htmlReporter);

          jasmineEnv.specFilter = function (spec) {
            return htmlReporter.specFilter(spec);
          };

          currentWindowOnload = window.onload;

          window.onload = function () {
            if (currentWindowOnload) {
              currentWindowOnload();
            }
            execJasmine();
          };

          function execJasmine() {
            jasmineEnv.execute();
          }

        })();
    </script>

Support

Maintainers

Copyright (c) 2008-2012 Pivotal Labs. This software is licensed under the MIT License.

jasmine's People

Contributors

bestander avatar btakita avatar cathoderay avatar eahanson avatar epabst avatar fabiomcosta avatar grosser avatar gunnarahlberg avatar infews avatar jaredatron avatar jcracknell avatar jpalermo avatar kevinoid avatar mark-rushakoff avatar maxbrunsfeld avatar moonmaster9000 avatar olical avatar osukaru avatar pivotalops avatar pivotalzergling avatar pvdz avatar ragaskar avatar rgould avatar rupurt avatar sconover avatar tcrayford avatar thewoolleyman avatar vikki avatar xian avatar yopefonic avatar

Watchers

 avatar

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.