

describe('§CONTROLLERNAMETITLE§', () => {
    let controller;

    beforeEach(async () => {
        // Create new controller instance based on the standard process.
        controller = await test_utils.get_controller('§TAG§',
                                                  {},
                                                  '<div><h1>Controller Loaded</h1></div>');
    });

    test('Load Content', async () => {
        const $div = $('body').find('§TAG§');
        expect($div.length).toBeGreaterThan(0);
    });

});