This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env zx | |
// you need zx installed | |
// run with `zx smoketest.mjs` | |
const BASEURL = 'http://localhost:3000'; | |
const COMMON = [ | |
'header', | |
'footer', | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const log = true; // comming from logging service (dont log in prod) | |
// | |
type Deprecation = { | |
what: string; | |
because: string; | |
recommendation: string; | |
adr_link: string; | |
} |
OlderNewer