Skip to content

Commit bbf4f6a

Browse files
committed
fixed merge conflicts
2 parents eb4eef5 + 3aa2e07 commit bbf4f6a

13 files changed

+4240
-1
lines changed

.directory

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[Dolphin]
2+
Timestamp=2015,6,3,16,15,15
3+
Version=3
4+
5+
[Settings]
6+
HiddenFilesShown=true

README-ru.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<script>
1313
var app = new Matreshka;
1414
app.bindNode( 'x', '.my-input' );
15-
app.x = 'Двустороннее связывание данных в JS? Серьезно?;
15+
app.x = 'Двустороннее связывание данных в JS? Серьезно?';
1616
</script>
1717
```
1818

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ Matreshka - is small and powerful client-side JavaScript framework that allows y
2222
* It's simple. Really. You don't need to learn mass of articles to get started.
2323
* Custom architecture. You can choose any way how you build an application.
2424

25+
#### Sponsoring by [Shooju](http://shooju.com)
26+
2527
## [Release History](https://github.com/finom/matreshka/releases)
2628

2729
## Todo

karma.conf.js

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
// Karma configuration
2+
// Generated on Thu Jun 25 2015 19:28:17 GMT+0300 (EEST)
3+
4+
module.exports = function(config) {
5+
config.set({
6+
7+
// base path that will be used to resolve all patterns (eg. files, exclude)
8+
basePath: '',
9+
10+
11+
// frameworks to use
12+
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
13+
frameworks: ['jasmine', 'requirejs'],
14+
15+
16+
// list of files / patterns to load in the browser
17+
files: [
18+
'test-main.js',
19+
{pattern: 'test/*_spec.js', included: false}
20+
],
21+
22+
23+
// list of files to exclude
24+
exclude: [
25+
],
26+
27+
28+
// preprocess matching files before serving them to the browser
29+
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
30+
preprocessors: {
31+
},
32+
33+
34+
// test results reporter to use
35+
// possible values: 'dots', 'progress'
36+
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
37+
reporters: ['progress'],
38+
39+
40+
// web server port
41+
port: 9876,
42+
43+
44+
// enable / disable colors in the output (reporters and logs)
45+
colors: true,
46+
47+
48+
// level of logging
49+
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
50+
logLevel: config.LOG_INFO,
51+
52+
53+
// enable / disable watching file and executing tests whenever any file changes
54+
autoWatch: true,
55+
56+
57+
// start these browsers
58+
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
59+
browsers: ['Chrome'],
60+
61+
62+
// Continuous Integration mode
63+
// if true, Karma captures browsers, runs the tests and exits
64+
singleRun: false
65+
});
66+
};

test-main.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
var allTestFiles = [];
2+
var TEST_REGEXP = /(spec|test)\.js$/i;
3+
4+
Object.keys(window.__karma__.files).forEach(function(file) {
5+
if (TEST_REGEXP.test(file)) {
6+
// Normalize paths to RequireJS module names.
7+
allTestFiles.push(file);
8+
}
9+
});
10+
11+
require.config({
12+
// Karma serves files under /base, which is the basePath from your config file
13+
baseUrl: '/base',
14+
15+
// dynamically load all test files
16+
deps: allTestFiles,
17+
18+
// we have to kickoff jasmine, as it is asynchronous
19+
callback: window.__karma__.start
20+
});

test/SpecRunner.html

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Jasmine Spec Runner v2.3.4</title>
6+
7+
<link rel="shortcut icon" type="image/png" href="lib/jasmine-2.3.4/jasmine_favicon.png">
8+
<link rel="stylesheet" href="lib/jasmine-2.3.4/jasmine.css">
9+
10+
<script src="lib/jasmine-2.3.4/jasmine.js"></script>
11+
<script src="lib/jasmine-2.3.4/jasmine-html.js"></script>
12+
<script src="lib/jasmine-2.3.4/boot.js"></script>
13+
14+
<script src="test_spec.js"></script>
15+
16+
17+
</head>
18+
19+
<body>
20+
</body>
21+
</html>

test/lib/jasmine-2.3.4/boot.js

+121
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
/**
2+
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.
3+
4+
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.
5+
6+
The location of `boot.js` can be specified and/or overridden in `jasmine.yml`.
7+
8+
[jasmine-gem]: http://github.com/pivotal/jasmine-gem
9+
*/
10+
11+
(function() {
12+
13+
/**
14+
* ## Require &amp; Instantiate
15+
*
16+
* Require Jasmine's core files. Specifically, this requires and attaches all of Jasmine's code to the `jasmine` reference.
17+
*/
18+
window.jasmine = jasmineRequire.core(jasmineRequire);
19+
20+
/**
21+
* 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.
22+
*/
23+
jasmineRequire.html(jasmine);
24+
25+
/**
26+
* Create the Jasmine environment. This is used to run all specs in a project.
27+
*/
28+
var env = jasmine.getEnv();
29+
30+
/**
31+
* ## The Global Interface
32+
*
33+
* 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.
34+
*/
35+
var jasmineInterface = jasmineRequire.interface(jasmine, env);
36+
37+
/**
38+
* 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`.
39+
*/
40+
extend(window, jasmineInterface);
41+
42+
/**
43+
* ## Runner Parameters
44+
*
45+
* More browser specific code - wrap the query string in an object and to allow for getting/setting parameters from the runner user interface.
46+
*/
47+
48+
var queryString = new jasmine.QueryString({
49+
getWindowLocation: function() { return window.location; }
50+
});
51+
52+
var catchingExceptions = queryString.getParam("catch");
53+
env.catchExceptions(typeof catchingExceptions === "undefined" ? true : catchingExceptions);
54+
55+
var throwingExpectationFailures = queryString.getParam("throwFailures");
56+
env.throwOnExpectationFailure(throwingExpectationFailures);
57+
58+
/**
59+
* ## Reporters
60+
* 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).
61+
*/
62+
var htmlReporter = new jasmine.HtmlReporter({
63+
env: env,
64+
onRaiseExceptionsClick: function() { queryString.navigateWithNewParam("catch", !env.catchingExceptions()); },
65+
onThrowExpectationsClick: function() { queryString.navigateWithNewParam("throwFailures", !env.throwingExpectationFailures()); },
66+
addToExistingQueryString: function(key, value) { return queryString.fullStringWithNewParam(key, value); },
67+
getContainer: function() { return document.body; },
68+
createElement: function() { return document.createElement.apply(document, arguments); },
69+
createTextNode: function() { return document.createTextNode.apply(document, arguments); },
70+
timer: new jasmine.Timer()
71+
});
72+
73+
/**
74+
* The `jsApiReporter` also receives spec results, and is used by any environment that needs to extract the results from JavaScript.
75+
*/
76+
env.addReporter(jasmineInterface.jsApiReporter);
77+
env.addReporter(htmlReporter);
78+
79+
/**
80+
* Filter which specs will be run by matching the start of the full name against the `spec` query param.
81+
*/
82+
var specFilter = new jasmine.HtmlSpecFilter({
83+
filterString: function() { return queryString.getParam("spec"); }
84+
});
85+
86+
env.specFilter = function(spec) {
87+
return specFilter.matches(spec.getFullName());
88+
};
89+
90+
/**
91+
* Setting up timing functions to be able to be overridden. Certain browsers (Safari, IE 8, phantomjs) require this hack.
92+
*/
93+
window.setTimeout = window.setTimeout;
94+
window.setInterval = window.setInterval;
95+
window.clearTimeout = window.clearTimeout;
96+
window.clearInterval = window.clearInterval;
97+
98+
/**
99+
* ## Execution
100+
*
101+
* 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.
102+
*/
103+
var currentWindowOnload = window.onload;
104+
105+
window.onload = function() {
106+
if (currentWindowOnload) {
107+
currentWindowOnload();
108+
}
109+
htmlReporter.initialize();
110+
env.execute();
111+
};
112+
113+
/**
114+
* Helper function for readability above.
115+
*/
116+
function extend(destination, source) {
117+
for (var property in source) destination[property] = source[property];
118+
return destination;
119+
}
120+
121+
}());

0 commit comments

Comments
 (0)