Skip to content

Instantly share code, notes, and snippets.

@qetr1ck-op
Created September 16, 2015 15:57
Show Gist options
  • Save qetr1ck-op/dc7fb71d2d3f61b4de76 to your computer and use it in GitHub Desktop.
Save qetr1ck-op/dc7fb71d2d3f61b4de76 to your computer and use it in GitHub Desktop.
module.value('a', 123);
module.constant('A', 321); //can't modify with a decorator
function Controller(a, A) {
expect(a).toEqual(123);
expect(A).toEqual(231);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment