FrameworkAdapter 
    Serves as a bridge to a testing framework.
The tests structure is defined using internal functions suite and test, which delegate to corresponding functions of a FrameworkAdapter. Sample test layout:
suite('a suite', false, function() {
  suite('a subsuite', false, function() {
    test('a test', false, function() {...});
    test('an ignored/pending test', true, function() {...});
  });
  suite('an ignored/pending test', true, function() {...});
});Content copied to clipboard