├── .gitignore ├── .npmignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE.txt ├── README.md ├── app └── js │ ├── .gitkeep │ └── jasmine-given.coffee ├── bower.json ├── config ├── application.coffee ├── bower-template.json ├── files.coffee └── spec.json ├── dist ├── jasmine-given.js └── jasmine-given.min.js ├── main.js ├── package.json ├── spec-e2e ├── basic-usage.coffee ├── helpers │ ├── invariants.coffee │ ├── spec-within-a-spec.coffee │ └── tmp-files.coffee ├── support │ ├── jasmine1-testem-config.json │ └── jasmine2-testem-config.json └── unimportant-features.coffee ├── spec ├── helpers │ └── helper.js ├── implementation-spec.coffee ├── jasmine-given-js-spec.js ├── jasmine-given-spec.coffee └── waterfall-spec.coffee ├── tasks └── .gitkeep └── vendor └── js └── jasmine-matcher-wrapper.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/README.md -------------------------------------------------------------------------------- /app/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/js/jasmine-given.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/app/js/jasmine-given.coffee -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/bower.json -------------------------------------------------------------------------------- /config/application.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/config/application.coffee -------------------------------------------------------------------------------- /config/bower-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/config/bower-template.json -------------------------------------------------------------------------------- /config/files.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/config/files.coffee -------------------------------------------------------------------------------- /config/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/config/spec.json -------------------------------------------------------------------------------- /dist/jasmine-given.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/dist/jasmine-given.js -------------------------------------------------------------------------------- /dist/jasmine-given.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/dist/jasmine-given.min.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/package.json -------------------------------------------------------------------------------- /spec-e2e/basic-usage.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/spec-e2e/basic-usage.coffee -------------------------------------------------------------------------------- /spec-e2e/helpers/invariants.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/spec-e2e/helpers/invariants.coffee -------------------------------------------------------------------------------- /spec-e2e/helpers/spec-within-a-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/spec-e2e/helpers/spec-within-a-spec.coffee -------------------------------------------------------------------------------- /spec-e2e/helpers/tmp-files.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/spec-e2e/helpers/tmp-files.coffee -------------------------------------------------------------------------------- /spec-e2e/support/jasmine1-testem-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/spec-e2e/support/jasmine1-testem-config.json -------------------------------------------------------------------------------- /spec-e2e/support/jasmine2-testem-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/spec-e2e/support/jasmine2-testem-config.json -------------------------------------------------------------------------------- /spec-e2e/unimportant-features.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/spec-e2e/unimportant-features.coffee -------------------------------------------------------------------------------- /spec/helpers/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/spec/helpers/helper.js -------------------------------------------------------------------------------- /spec/implementation-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/spec/implementation-spec.coffee -------------------------------------------------------------------------------- /spec/jasmine-given-js-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/spec/jasmine-given-js-spec.js -------------------------------------------------------------------------------- /spec/jasmine-given-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/spec/jasmine-given-spec.coffee -------------------------------------------------------------------------------- /spec/waterfall-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/spec/waterfall-spec.coffee -------------------------------------------------------------------------------- /tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/js/jasmine-matcher-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searls/jasmine-given/HEAD/vendor/js/jasmine-matcher-wrapper.js --------------------------------------------------------------------------------