- THere seems to be a performance regression. Large test suites may throw - Regressions: Mock Clock won't install correctly, async specs are temporarily not supported. - Async spec runs/waits interface is gone. Blocks are gone. - Move most global usage into jasmine.Env constructor. - Remove optional 'Jasmine running' from HtmlReporter -- caused NS_FACTORY_ERROR in firefox when tested
30 lines
546 B
Ruby
30 lines
546 B
Ruby
class JasmineDev < Thor
|
|
JASMINE_SOURCES = {
|
|
:core => [
|
|
"base.js",
|
|
"util.js",
|
|
"ExpectationResult.js",
|
|
"Env.js",
|
|
"Reporter.js",
|
|
"JsApiReporter.js",
|
|
"Matchers.js",
|
|
"mock-timeout.js",
|
|
"MultiReporter.js",
|
|
"NestedResults.js",
|
|
"PrettyPrinter.js",
|
|
"Queue.js",
|
|
"Runner.js",
|
|
"Spec.js",
|
|
"Suite.js",
|
|
],
|
|
|
|
:html => [
|
|
"HtmlReporterHelpers.js",
|
|
"HtmlReporter.js",
|
|
"ReporterView.js",
|
|
"SpecView.js",
|
|
"SuiteView.js",
|
|
]
|
|
}
|
|
end
|