UNPKG

333 BJavaScriptView Raw
1describe('resanitize', function (){
2 var assert = require('assert')
3 , resanitize = require('../');
4 describe('feedsportal', function () {
5 it('should strip feedsportal ads', function () {
6 var item = require('./fixtures/feedsportal.json');
7 assert.equal(resanitize(item.original), item.expected);
8 });
9 });
10});
\No newline at end of file