Detox - Mobile App Testing

Wix has an interesting E2E testing framework for mobile called Detox. Here's a sample test:

js
1describe('Login flow', () => {
2
3 it('should login successfully', async () => {
4 await device.reloadReactNative();
5
6 await element(by.id('email')).typeText('john@example.com');
7 await element(by.id('password')).typeText('123456');
8 await element(by.text('Login')).tap();
9
10 await expect(element(by.text('Welcome'))).toBeVisible();
11 await expect(element(by.id('email'))).toNotExist();
12 });
13
14});

Export Photoshop Layers

This script lets you export photoshop layers pretty fast. How the script works (i.e. read the source code) is the most fascinating part of this.

Hasty.dev is a cool JavaScript performance tool

Check it out here: Hasty.dev.

Three.js and some gorgeous glass effects

Here's a link to the article.

A great resource for Developer Tools

Read the article here

Controlling Excel Sheets with JavaScript is a thing

You've been able to do this with Google Sheets since forever. Now you can use JS with Excel.

API Client: Paw

It seems like by default collaborating with somebody with APIs required me to use POSTman but I grew tired of the interface and how it manages the APIs. I decided to give Paw a try and so far I'd recommend it. And yes... the import and export process to POSTman works!

Github graphs for your Readme.md

What a great implementation of this concept. Check it out

Sign up and get the latest friction log studies, blog articles and podcast updates

© 2021 Friction Log. All Rights Reserved.