Skip to content

Instantly share code, notes, and snippets.

Testing

This directory contains three levels of tests:

Unit tests (test/unit)

  • Should target functions and classes directly
  • Server should not be started
  • No external calls depenedencies should be hit
@beastawakens
beastawakens / funretro_export.js
Created March 8, 2018 10:15 — forked from andrejj/funretro_export.js
fun retro export script
// paste it in the dev console
s=""; $('.column-header > h2').each(function(){s += '\n\n'+this.innerText+'\n'; $(this).closest('.message-list').find('.message-body > .text').each(function(){s += ' - '+this.innerText+'\n';}) }); console.log(s)