forked from sharkdp/insect
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add russian units. Add UpperCase for first symbol for english units. See in insect.js from the line 686: Object V (kilo-, mega-, milli-, micro-), Object da (phisics units), and P (english units). Add Jasmine SpecRunner test for all this. see ./web/jasmine/SpecRunner.html and see the source code of ./web/jasmine/spec_test_insect.js TESTS WAS BEEN SUCCESSFULLY PASSED. Fails - commented. Try to add flick and bitcoin. Fail. Try to add convertation commands "в", "на" - FAIL. I see terminal error, after copying some text here and press the key with any symbol - this symbol have double printing. Update jquery.terminal.min.js -> to the version 1.9.0. In previous version I saw an error: sharkdp#166 Pull request was been created here: sharkdp#167
- Loading branch information
1 parent
a52c94a
commit f567b40
Showing
14 changed files
with
9,204 additions
and
14 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Copyright (c) 2008-2017 Pivotal Labs | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of this software and associated documentation files (the | ||
"Software"), to deal in the Software without restriction, including | ||
without limitation the rights to use, copy, modify, merge, publish, | ||
distribute, sublicense, and/or sell copies of the Software, and to | ||
permit persons to whom the Software is furnished to do so, subject to | ||
the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be | ||
included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Jasmine Spec Runner v3.2.0</title> | ||
|
||
<link rel="shortcut icon" type="image/png" href="lib/jasmine-3.2.0/jasmine_favicon.png"> | ||
<link rel="stylesheet" href="lib/jasmine-3.2.0/jasmine.css"> | ||
|
||
<script src="lib/jasmine-3.2.0/jasmine.js"></script> | ||
<script src="lib/jasmine-3.2.0/jasmine-html.js"></script> | ||
<script src="lib/jasmine-3.2.0/boot.js"></script> | ||
|
||
<!-- include source files here... --> | ||
<!-- | ||
<script src="src/Player.js"></script> | ||
<script src="src/Song.js"></script> | ||
--> | ||
<script src="../insect.js" type="text/javascript"></script> | ||
|
||
|
||
<!-- include spec files here... --> | ||
<!-- | ||
<script src="spec/SpecHelper.js"></script> | ||
<script src="spec/PlayerSpec.js"></script> | ||
--> | ||
<script src="spec_test_insect.js" type="text/javascript"></script> | ||
|
||
</head> | ||
|
||
<body> | ||
<center>To see detail test - just see the source code of <a href="./spec_test_insect.js">spec_test_insect.js</a></center><br> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
/** | ||
Starting with version 2.0, this file "boots" Jasmine, performing all of the necessary initialization before executing the loaded environment and all of a project's specs. This file should be loaded after `jasmine.js` and `jasmine_html.js`, but before any project source files or spec files are loaded. Thus this file can also be used to customize Jasmine for a project. | ||
If a project is using Jasmine via the standalone distribution, this file can be customized directly. If a project is using Jasmine via the [Ruby gem][jasmine-gem], this file can be copied into the support directory via `jasmine copy_boot_js`. Other environments (e.g., Python) will have different mechanisms. | ||
The location of `boot.js` can be specified and/or overridden in `jasmine.yml`. | ||
[jasmine-gem]: http://github.com/pivotal/jasmine-gem | ||
*/ | ||
|
||
(function() { | ||
|
||
/** | ||
* ## Require & Instantiate | ||
* | ||
* Require Jasmine's core files. Specifically, this requires and attaches all of Jasmine's code to the `jasmine` reference. | ||
*/ | ||
window.jasmine = jasmineRequire.core(jasmineRequire); | ||
|
||
/** | ||
* Since this is being run in a browser and the results should populate to an HTML page, require the HTML-specific Jasmine code, injecting the same reference. | ||
*/ | ||
jasmineRequire.html(jasmine); | ||
|
||
/** | ||
* Create the Jasmine environment. This is used to run all specs in a project. | ||
*/ | ||
var env = jasmine.getEnv(); | ||
|
||
/** | ||
* ## The Global Interface | ||
* | ||
* Build up the functions that will be exposed as the Jasmine public interface. A project can customize, rename or alias any of these functions as desired, provided the implementation remains unchanged. | ||
*/ | ||
var jasmineInterface = jasmineRequire.interface(jasmine, env); | ||
|
||
/** | ||
* Add all of the Jasmine global/public interface to the global scope, so a project can use the public interface directly. For example, calling `describe` in specs instead of `jasmine.getEnv().describe`. | ||
*/ | ||
extend(window, jasmineInterface); | ||
|
||
/** | ||
* ## Runner Parameters | ||
* | ||
* More browser specific code - wrap the query string in an object and to allow for getting/setting parameters from the runner user interface. | ||
*/ | ||
|
||
var queryString = new jasmine.QueryString({ | ||
getWindowLocation: function() { return window.location; } | ||
}); | ||
|
||
var filterSpecs = !!queryString.getParam("spec"); | ||
|
||
var stoppingOnSpecFailure = queryString.getParam("failFast"); | ||
env.stopOnSpecFailure(stoppingOnSpecFailure); | ||
|
||
var throwingExpectationFailures = queryString.getParam("throwFailures"); | ||
env.throwOnExpectationFailure(throwingExpectationFailures); | ||
|
||
var hideDisabled = queryString.getParam("hideDisabled"); | ||
env.hideDisabled(hideDisabled); | ||
|
||
var random = queryString.getParam("random"); | ||
|
||
if (random !== undefined && random !== "") { | ||
env.randomizeTests(random); | ||
} | ||
|
||
var seed = queryString.getParam("seed"); | ||
if (seed) { | ||
env.seed(seed); | ||
} | ||
|
||
/** | ||
* ## Reporters | ||
* The `HtmlReporter` builds all of the HTML UI for the runner page. This reporter paints the dots, stars, and x's for specs, as well as all spec names and all failures (if any). | ||
*/ | ||
var htmlReporter = new jasmine.HtmlReporter({ | ||
env: env, | ||
navigateWithNewParam: function(key, value) { return queryString.navigateWithNewParam(key, value); }, | ||
addToExistingQueryString: function(key, value) { return queryString.fullStringWithNewParam(key, value); }, | ||
getContainer: function() { return document.body; }, | ||
createElement: function() { return document.createElement.apply(document, arguments); }, | ||
createTextNode: function() { return document.createTextNode.apply(document, arguments); }, | ||
timer: new jasmine.Timer(), | ||
filterSpecs: filterSpecs | ||
}); | ||
|
||
/** | ||
* The `jsApiReporter` also receives spec results, and is used by any environment that needs to extract the results from JavaScript. | ||
*/ | ||
env.addReporter(jasmineInterface.jsApiReporter); | ||
env.addReporter(htmlReporter); | ||
|
||
/** | ||
* Filter which specs will be run by matching the start of the full name against the `spec` query param. | ||
*/ | ||
var specFilter = new jasmine.HtmlSpecFilter({ | ||
filterString: function() { return queryString.getParam("spec"); } | ||
}); | ||
|
||
env.specFilter = function(spec) { | ||
return specFilter.matches(spec.getFullName()); | ||
}; | ||
|
||
/** | ||
* Setting up timing functions to be able to be overridden. Certain browsers (Safari, IE 8, phantomjs) require this hack. | ||
*/ | ||
window.setTimeout = window.setTimeout; | ||
window.setInterval = window.setInterval; | ||
window.clearTimeout = window.clearTimeout; | ||
window.clearInterval = window.clearInterval; | ||
|
||
/** | ||
* ## Execution | ||
* | ||
* Replace the browser window's `onload`, ensure it's called, and then run all of the loaded specs. This includes initializing the `HtmlReporter` instance and then executing the loaded Jasmine environment. All of this will happen after all of the specs are loaded. | ||
*/ | ||
var currentWindowOnload = window.onload; | ||
|
||
window.onload = function() { | ||
if (currentWindowOnload) { | ||
currentWindowOnload(); | ||
} | ||
htmlReporter.initialize(); | ||
env.execute(); | ||
}; | ||
|
||
/** | ||
* Helper function for readability above. | ||
*/ | ||
function extend(destination, source) { | ||
for (var property in source) destination[property] = source[property]; | ||
return destination; | ||
} | ||
|
||
}()); |
Oops, something went wrong.