Skip to content

Commit

Permalink
deploy to GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
git-afsantos committed Dec 12, 2024
1 parent b2dbcb8 commit ee4c98d
Show file tree
Hide file tree
Showing 14 changed files with 158 additions and 4 deletions.
1 change: 1 addition & 0 deletions docs/assets/IssuesView-B6q4rlkX.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docs/assets/IssuesView-hlg7LbFA.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docs/assets/RuntimeView--L5zJpOc.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/assets/RuntimeView-Cnp8g5ba.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docs/assets/SourceView-DwWdiRTI.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions docs/assets/index-BPw8nnxt.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/assets/index-Bebdlpn1.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added docs/favicon.ico
Binary file not shown.
Binary file added docs/icon-192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/icon-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
74 changes: 74 additions & 0 deletions docs/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 37 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!doctype html>
<!-- SPDX-License-Identifier: MIT -->
<!-- Copyright © 2024 André Santos -->
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0" />-->

<title>HAROSviz</title>
<meta name="mobile-web-app-capable" content="yes" />
<meta
name="viewport"
content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimal-ui"
/>
<meta name="apple-mobile-web-app-status-bar-style" content="yes" />

<link rel="manifest" href="/manifest.webmanifest" />
<!-- 32×32 -->
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" href="/icon.svg" type="image/svg+xml" />
<!-- 180×180 -->
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />

<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400&display=swap"
/>
<script type="module" crossorigin src="/assets/index-BPw8nnxt.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-Bebdlpn1.css">
</head>
<body>
<main id="app"></main>
</body>
</html>
7 changes: 7 additions & 0 deletions docs/manifest.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "HAROSviz",
"icons": [
{ "src": "/icon-192.png", "type": "image/png", "sizes": "192x192" },
{ "src": "/icon-512.png", "type": "image/png", "sizes": "512x512" }
]
}
12 changes: 8 additions & 4 deletions src/components/__tests__/HelloWorld.spec.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
import { describe, it, expect } from 'vitest'

import { mount } from '@vue/test-utils'
import HelloWorld from '../HelloWorld.vue'
import HomeView from '../../views/HomeView.vue'

describe('HelloWorld', () => {
describe('HomeView', () => {
it('renders properly', () => {
const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } })
expect(wrapper.text()).toContain('Hello Vitest')
const wrapper = mount(HomeView, {
props: {
/*msg: 'Hello Vitest'*/
},
})
expect(wrapper.text()).toContain('Project')
})
})

0 comments on commit ee4c98d

Please sign in to comment.