-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some questions and notes #68
Comments
Thanks for your list @kuraga
By the way, rotor.js!!! What a nice name for a new framework!! I'd like to see it working, do you have some demo online?? Cheers, |
@arqex big thanks for reply! 2-4) Note problem is wider: not only in pointed places (you know it 😄).
Coolness of RotorJS is its modularity. Some of FreezerJs tests are like a standard but you may use other library (I think even mutable) for model (FreezerJs Model file). The same for other components such as application loop. You may use (virtual) DOM library or make Canvas support (now I support virtual-dom only). There is an example. I'm creating online demo (another maybe, I think ToDoMVC after stabilizing of API. But coolness is code not possibilities (they are minimal). Big thanks! Feel free to close. |
1) Tag 1c17fe3 asv0.9.4
, please.Propose to use
===
/!==
instead of==
/!=
.Same for tests:
strictEqual
/notStrictEqual
instead ofequal
/notEqual
.Is this
assert.deepEqual(data, example);
instead?What does
remove
returns being called with unexistant key(s)? Is it fixed in tests?Listener tests: I don't see tests about triggering callbacks on exact
.remove
call.Listener tests: I don't see tests about
.trigger
function.Listener tests: "Listen by several callbacks" test is omitted.
Listener tests: Will callback triggered if we try to remove non-existant property?
Listener tests: Will callback triggered if we try to update a property but with the same value?
Listener tests: ".unsubscribe doesn't touch other callbacks" test is omitted.
Listener tests: What's the behavior if we pass non-existant callback to
.unsubscribe
?Could we merge (some parts of) freezer-spec and hash-spec?
@arqex , thanks! (Note: I've read
freezer-spec
,hash-spec
andlisteners-spec
only. I use them here.)The text was updated successfully, but these errors were encountered: