aboutsummaryrefslogtreecommitdiff
path: root/exampleData/ruleSets/reportOnSampleText.json
blob: 143e629082a2208c8ea689ca20614b58bb77b2ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 'name': 'reportOnSampleText',
  'description': 'test',
  'rules': [
//---
  { 'name': 'Test rule',
               'description': 'An empty test rule',
               'rule': function() {
                  fiveui.query('p').each(
                    function(idx, elt) {
                      if ($(elt).text().indexOf('Sample text') != -1) {
                        report('test error', elt);
                      }
                    });
               }
             }//,
 //----
 ]
}