Fork me on GitHub
#cljsrn
<
2017-03-29
>
etherfuse04:03:45

I haven’t used it yet, but it looks like you can take a snapshot of your component when you’ve verified it’s how you want, and it will compare that snapshot every build

etherfuse04:03:25

seems like could create your component and verify it with changes later on

etherfuse04:03:58

I haven’t seen it done with clojurescript though

seantempesta06:03:42

Has anyone written any code to have native clj datastructures work with the new VirtualizedList or FlatList? https://facebook.github.io/react-native/releases/0.43/docs/virtualizedlist.html

savelichalex07:03:11

find library to e2e tests https://github.com/wix/detox, didn't try yet 🙂

wojciech07:03:58

There's also https://github.com/pixielabs/cavy (didn't try yet neither)

gerrit13:03:23

@seantempesta this doesn't use native clj data directly but makes it work without clj->js->clj AFAIU (courtesy by @raspasov ): https://gist.github.com/raspasov/e9a1008f2c0d5be2d202f0a4cdebe009#file-immutable-v-list-cljs-L18

raspasov22:03:13

@seantempesta @gerrit yes I’ve been using this more or less the same like it’s in the gist for a couple of weeks now, I’ve replaced all my old ListView cases with VirtualizedList, works very well so far