- consequently, Runner & Suite no longer have results. - Results come back to reporters from Spec, we should not have a need to walk them later via suite/runner (in fact, no reporter used results on suite/runner -- only bad tests) - Remove/clean up tests relying on #results - Remove integration tests that duplicate already tested behavior
33 lines
612 B
Ruby
33 lines
612 B
Ruby
class JasmineDev < Thor
|
|
JASMINE_SOURCES = {
|
|
:core => [
|
|
"base.js",
|
|
"util.js",
|
|
"ExpectationResult.js",
|
|
"Env.js",
|
|
"Reporter.js",
|
|
"Block.js",
|
|
"JsApiReporter.js",
|
|
"Matchers.js",
|
|
"mock-timeout.js",
|
|
"MultiReporter.js",
|
|
"NestedResults.js",
|
|
"PrettyPrinter.js",
|
|
"Queue.js",
|
|
"Runner.js",
|
|
"Spec.js",
|
|
"Suite.js",
|
|
"WaitsBlock.js",
|
|
"WaitsForBlock.js"
|
|
],
|
|
|
|
:html => [
|
|
"HtmlReporterHelpers.js",
|
|
"HtmlReporter.js",
|
|
"ReporterView.js",
|
|
"SpecView.js",
|
|
"SuiteView.js",
|
|
]
|
|
}
|
|
end
|