summaryrefslogtreecommitdiff
path: root/test/endless/testTopbarHomeButton.js
blob: 1eeee73ff342fe81d37cd0c5b630ad084ad62ed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const Endless = imports.gi.Endless;
const Gtk = imports.gi.Gtk;

Gtk.init(null);

describe('TopbarHomeButton', function () {
    let button;

    beforeEach(function () {
        button = new Endless.TopbarHomeButton();
    });

    it('can be constructed', function () {});
});