diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-03-29 18:28:21 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-03-29 18:28:21 -0300 |
commit | d57d1c71e2ad0aca9a83bf26d84b3d8744255da6 (patch) | |
tree | b326f672e7bbdc6a211a97567f7c67ac0e917e95 /test/snapshot | |
parent | bee8e687a3e332203d31ad88a107f1ec9fa125aa (diff) |
content: linkExternal, linkExternalFlash
Diffstat (limited to 'test/snapshot')
-rw-r--r-- | test/snapshot/linkExternalFlash.js | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/snapshot/linkExternalFlash.js b/test/snapshot/linkExternalFlash.js new file mode 100644 index 00000000..3f63760f --- /dev/null +++ b/test/snapshot/linkExternalFlash.js @@ -0,0 +1,31 @@ +import t from 'tap'; +import {testContentFunctions} from '../lib/content-function.js'; + +testContentFunctions(t, 'linkExternalFlash (snapshot)', async (t, evaluate) => { + await evaluate.load(); + + evaluate.snapshot({ + name: 'linkExternalFlash', + args: ['https://homestuck.com/story/4109/', {page: '4109'}], + }); + + evaluate.snapshot({ + name: 'linkExternalFlash', + args: ['https://homestuck.com/story/pony/', {page: 'pony'}], + }); + + evaluate.snapshot({ + name: 'linkExternalFlash', + args: ['https://youtu.be/FDt-SLyEcjI', {page: '4109'}], + }); + + evaluate.snapshot({ + name: 'linkExternalFlash', + args: ['https://www.bgreco.net/hsflash/006009.html', {page: '4109'}], + }); + + evaluate.snapshot({ + name: 'linkExternalFlash', + args: ['https://www.newgrounds.com/portal/view/582345', {page: '4109'}], + }) +}); |