style: new toast design closer to SIP-34 (#10178)

This commit is contained in:
Lily Kuang
2020-07-10 14:58:59 -07:00
committed by GitHub
parent 80b06f6827
commit 3b4df51848
13 changed files with 286 additions and 257 deletions

View File

@@ -34,9 +34,9 @@ describe('ToastPresenter', () => {
return wrapper;
}
it('should render a div with class toast-presenter', () => {
it('should render a div with id toast-presenter', () => {
const wrapper = setup();
expect(wrapper.find('.toast-presenter')).toHaveLength(1);
expect(wrapper.find('#toast-presenter')).toHaveLength(1);
});
it('should render a Toast for each toast object', () => {