aboutsummaryrefslogtreecommitdiff
path: root/e2e/contents/scroll.test.js
blob: 6cf00423dd9ee05acffd21f55dd4c399b2e019e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { expect } from "chai";
import * as windows from "../ambassador/src/client/windows";

describe("scroll test", () => {
  let targetWindow;
  before(() => {
    return windows.create().then((win) => {
      targetWindow = win;
    });
  });

  after(() => {
    return windows.remove(targetWindow.id);
  });

  it('runs test', () => {
    expect(targetWindow.id).be.a('number');
  });
});