Skip to content

Commit

Permalink
addded test
Browse files Browse the repository at this point in the history
  • Loading branch information
amish1188 committed Dec 7, 2023
1 parent 10c12ff commit a40a458
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:

jobs:
# Run when a pull request is created or updated
# test comment
build_and_deploy_pull_request:
if: github.event_name == 'pull_request' && github.event.action != 'closed'
runs-on: ubuntu-latest
Expand Down
18 changes: 3 additions & 15 deletions src/stories/NveButton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,12 @@ export const NveButton = ({
}) => {
if (loading)
return html`
<nve-button
variant=${variant}
size=${size}
.disabled=${disabled}
.outline=${outline}
>
Button
<nve-button variant=${variant} size=${size} .disabled=${disabled} .outline=${outline}>
Button to test
<span slot="suffix"><nve-spinner></nve-spinner></span>
</nve-button>
`;
return html`
<nve-button
variant=${variant}
size=${size}
.disabled=${disabled}
.outline=${outline}
>
Button
</nve-button>
<nve-button variant=${variant} size=${size} .disabled=${disabled} .outline=${outline}> Button </nve-button>
`;
};

0 comments on commit a40a458

Please sign in to comment.