Skip to content

Commit

Permalink
fix build (chromatic-build)
Browse files Browse the repository at this point in the history
  • Loading branch information
smithoo committed Sep 13, 2024
1 parent 5377216 commit 2795603
Showing 1 changed file with 24 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,49 +22,49 @@ describe('vs-toast-view', () => {
toasts: [
{
id: '1',
text: 'Hello',
content: 'Hello',
autoClose: true,
duration: 3000,
timeout: 3000,
placement: 'top',
align: 'start',
},
{
id: '2',
text: 'Hello',
content: 'Hello',
autoClose: true,
duration: 3000,
timeout: 3000,
placement: 'top',
align: 'center',
},
{
id: '3',
text: 'Hello',
content: 'Hello',
autoClose: true,
duration: 3000,
timeout: 3000,
placement: 'top',
align: 'end',
},
{
id: '4',
text: 'Hello',
content: 'Hello',
autoClose: true,
duration: 3000,
timeout: 3000,
placement: 'bottom',
align: 'start',
},
{
id: '5',
text: 'Hello',
content: 'Hello',
autoClose: true,
duration: 3000,
timeout: 3000,
placement: 'bottom',
align: 'center',
},
{
id: '6',
text: 'Hello',
content: 'Hello',
autoClose: true,
duration: 3000,
timeout: 3000,
placement: 'bottom',
align: 'end',
},
Expand Down Expand Up @@ -121,9 +121,9 @@ describe('vs-toast-view', () => {
expect(wrapper.vm.toasts).toEqual([
{
id: '1',
text: 'Hello',
content: 'Hello',
autoClose: true,
duration: 3000,
timeout: 3000,
placement: 'top',
align: 'start',
},
Expand All @@ -145,9 +145,9 @@ describe('vs-toast-view', () => {
expect(wrapper.vm.toasts).toEqual([
{
id: '2',
text: 'Hello',
content: 'Hello',
autoClose: true,
duration: 3000,
timeout: 3000,
placement: 'top',
align: 'center',
},
Expand All @@ -169,9 +169,9 @@ describe('vs-toast-view', () => {
expect(wrapper.vm.toasts).toEqual([
{
id: '3',
text: 'Hello',
content: 'Hello',
autoClose: true,
duration: 3000,
timeout: 3000,
placement: 'top',
align: 'end',
},
Expand All @@ -193,9 +193,9 @@ describe('vs-toast-view', () => {
expect(wrapper.vm.toasts).toEqual([
{
id: '4',
text: 'Hello',
content: 'Hello',
autoClose: true,
duration: 3000,
timeout: 3000,
placement: 'bottom',
align: 'start',
},
Expand All @@ -217,9 +217,9 @@ describe('vs-toast-view', () => {
expect(wrapper.vm.toasts).toEqual([
{
id: '5',
text: 'Hello',
content: 'Hello',
autoClose: true,
duration: 3000,
timeout: 3000,
placement: 'bottom',
align: 'center',
},
Expand All @@ -241,9 +241,9 @@ describe('vs-toast-view', () => {
expect(wrapper.vm.toasts).toEqual([
{
id: '6',
text: 'Hello',
content: 'Hello',
autoClose: true,
duration: 3000,
timeout: 3000,
placement: 'bottom',
align: 'end',
},
Expand Down

0 comments on commit 2795603

Please sign in to comment.