mirror of
https://github.com/golang/go
synced 2024-11-18 14:24:44 -07:00
08b1e0510c
This change also puts more structure into the viewer. Adds an enum for events that we'll issue and a few more elements to organize things. Change-Id: I39c7c53422779348ca05f051c6b0b07d22ad6a00 Reviewed-on: https://go-review.googlesource.com/26656 Reviewed-by: Alan Donovan <adonovan@google.com>
29 lines
918 B
TypeScript
29 lines
918 B
TypeScript
// Copyright 2016 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
import {HamburgerElement, HeadingElement, SidebarElement, main} from './main';
|
|
|
|
describe('main', () => {
|
|
it('sets the document\'s title', () => {
|
|
main();
|
|
expect(document.title).toBe('Go Heap Viewer');
|
|
});
|
|
|
|
it('has a heading', () => {
|
|
main();
|
|
expect(document.querySelector(HeadingElement.NAME)).toBeDefined();
|
|
});
|
|
|
|
it('has a sidebar', () => {
|
|
main();
|
|
const hamburger = document.querySelector(HamburgerElement.NAME);
|
|
const sidebar =
|
|
document.querySelector(SidebarElement.NAME) as SidebarElement;
|
|
expect(sidebar.style.display).toBe('none');
|
|
|
|
// Click on the hamburger. Sidebar should then be visible.
|
|
hamburger.dispatchEvent(new Event('click'));
|
|
expect(sidebar.style.display).toBe('block');
|
|
})
|
|
}); |