├── .externalToolBuilders └── JSTD.launch ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.jsdt.ui.superType.name ├── MIT.LICENSE ├── README.md ├── jsTestDriver.conf ├── jsTestDriverIit.conf ├── lib ├── jasmine │ ├── jasmine.js │ └── version.txt └── jstestdriver │ ├── JsTestDriver.jar │ └── version.txt ├── server.sh ├── src-test ├── iit │ └── iitSpec.js └── tests.js ├── src └── JasmineAdapter.js ├── test-iit.sh ├── test-regular.sh └── test.sh /.externalToolBuilders/JSTD.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhevery/jasmine-jstd-adapter/HEAD/.externalToolBuilders/JSTD.launch -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhevery/jasmine-jstd-adapter/HEAD/.project -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhevery/jasmine-jstd-adapter/HEAD/.settings/.jsdtscope -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.JRE_CONTAINER -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Global -------------------------------------------------------------------------------- /MIT.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhevery/jasmine-jstd-adapter/HEAD/MIT.LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhevery/jasmine-jstd-adapter/HEAD/README.md -------------------------------------------------------------------------------- /jsTestDriver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhevery/jasmine-jstd-adapter/HEAD/jsTestDriver.conf -------------------------------------------------------------------------------- /jsTestDriverIit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhevery/jasmine-jstd-adapter/HEAD/jsTestDriverIit.conf -------------------------------------------------------------------------------- /lib/jasmine/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhevery/jasmine-jstd-adapter/HEAD/lib/jasmine/jasmine.js -------------------------------------------------------------------------------- /lib/jasmine/version.txt: -------------------------------------------------------------------------------- 1 | 1.1.0 2 | -------------------------------------------------------------------------------- /lib/jstestdriver/JsTestDriver.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhevery/jasmine-jstd-adapter/HEAD/lib/jstestdriver/JsTestDriver.jar -------------------------------------------------------------------------------- /lib/jstestdriver/version.txt: -------------------------------------------------------------------------------- 1 | 1.3.3c 2 | -------------------------------------------------------------------------------- /server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhevery/jasmine-jstd-adapter/HEAD/server.sh -------------------------------------------------------------------------------- /src-test/iit/iitSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhevery/jasmine-jstd-adapter/HEAD/src-test/iit/iitSpec.js -------------------------------------------------------------------------------- /src-test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhevery/jasmine-jstd-adapter/HEAD/src-test/tests.js -------------------------------------------------------------------------------- /src/JasmineAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhevery/jasmine-jstd-adapter/HEAD/src/JasmineAdapter.js -------------------------------------------------------------------------------- /test-iit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhevery/jasmine-jstd-adapter/HEAD/test-iit.sh -------------------------------------------------------------------------------- /test-regular.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhevery/jasmine-jstd-adapter/HEAD/test-regular.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhevery/jasmine-jstd-adapter/HEAD/test.sh --------------------------------------------------------------------------------