Become a member
Sign in
Matias Alibertti
Matias Alibertti

Matias Alibertti

90 Following
20 Followers
  • Profile
  • Claps
  • Highlights
  • Responses

Highlighted by Matias Alibertti

See more

From Mocking is a Code Smell by Eric Elliott

It’s perfectly OK to mock and fake for integration tests.

From Mocking is a Code Smell by Eric Elliott

In general, units are tested using only the public interface of the unit (aka “public API” or “surface area”). This is referred to as black box testing. Black box testing leads to less brittle tests, because the implementation details of a unit tend to change more over time than the public API of the unit. If you use white box testing, where tests are aware of implementation details, any change to the implementation details could break the test, even if the public API continues to function as expected. In other words, white-box testing leads to wasted rework.

From The State of CSS in Angular by Stephen Fluin

…nder each component, which will isolate the component completely, even from styles defined globally (global styles D…nder each component, which will isolate the component completely, even from styles defined globally (global styles DO pierce components with emulated view encapsulation).

Claps from Matias Alibertti

See more

Microfrontends — when they aren’t the answer (React, Angular, Vue etc)

Chris Kitson

Optimize state re-rendering

Benjamin A. Bangsund

React Hooks: Initial State of Object Pitfall

Ryan Bowlen