1
0
mirror of https://gitcode.com/gitea/gitea.git synced 2025-06-12 07:38:06 +08:00
Files
.gitea
.github
assets
build
cmd
contrib
custom
docker
docs
models
modules
options
public
routers
services
snap
templates
tests
tools
web_src
fomantic
js
components
features
markup
modules
standalone
test
bootstrap.js
index.js
jquery.js
serviceworker.js
svg.js
svg.test.js
utils.js
utils.test.js
less
svg
.air.toml
.changelog.yml
.dockerignore
.drone.yml
.editorconfig
.eslintrc.yaml
.gitattributes
.gitignore
.gitpod.yml
.golangci.yml
.ignore
.lgtm
.markdownlint.yaml
.npmrc
.spectral.yaml
.stylelintrc.yaml
BSDmakefile
CHANGELOG.md
CONTRIBUTING.md
DCO
Dockerfile
Dockerfile.rootless
LICENSE
MAINTAINERS
Makefile
README.md
README_ZH.md
SECURITY.md
build.go
go.mod
go.sum
main.go
package-lock.json
package.json
playwright.config.js
vitest.config.js
webpack.config.js
gitea/web_src/js/svg.test.js
silverwind 37ca4cb7d6 Remove vitest globals ()
Explicitly import them instead which is cleaner and enables better
editor integration.

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
2022-10-19 14:50:19 +08:00

9 lines
258 B
JavaScript

import {expect, test} from 'vitest';
import {svg} from './svg.js';
test('svg', () => {
expect(svg('octicon-repo')).toMatch(/^<svg/);
expect(svg('octicon-repo', 16)).toContain('width="16"');
expect(svg('octicon-repo', 32)).toContain('width="32"');
});