Files
jasmine/tasks/jasmine_dev/sources.rb
Davis W. Frank & Rajan Agaskar 74f928fd54 Re-add Mock Clock behavior as global 'clock'
- Use clock.install, clock.tick...
- Add unit coverage.
- Fixes old bug in function scheduler
2012-12-07 10:04:47 -08:00

31 lines
575 B
Ruby

class JasmineDev < Thor
JASMINE_SOURCES = {
:core => [
"base.js",
"util.js",
"ExpectationResult.js",
"Env.js",
"Reporter.js",
"JsApiReporter.js",
"Matchers.js",
"MultiReporter.js",
"NestedResults.js",
"PrettyPrinter.js",
"Queue.js",
"Runner.js",
"Spec.js",
"Suite.js",
"Clock.js",
"DelayedFunctionScheduler.js"
],
:html => [
"HtmlReporterHelpers.js",
"HtmlReporter.js",
"ReporterView.js",
"SpecView.js",
"SuiteView.js",
]
}
end