diff options
| author | Shun Sakai <sorairolake@protonmail.ch> | 2023-07-27 14:31:52 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-27 14:31:52 +0900 |
| commit | c2370a1be631355e709c47d3b5e9469906116b84 (patch) | |
| tree | 75071c994f444f3ceea6ad0225e09b9374ca02ca /packages/frontend/test | |
| parent | chore: update pnpm to 8.6.10 (diff) | |
| download | misskey-c2370a1be631355e709c47d3b5e9469906116b84.tar.gz misskey-c2370a1be631355e709c47d3b5e9469906116b84.tar.bz2 misskey-c2370a1be631355e709c47d3b5e9469906116b84.zip | |
chore: 著作権とライセンスについての情報を各ファイルに追加する (#11348)
* chore: Add the SPDX information to each file
Add copyright and licensing information as defined in version 3.0 of
the REUSE Specification.
* tweak format
---------
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'packages/frontend/test')
| -rw-r--r-- | packages/frontend/test/home.test.ts | 5 | ||||
| -rw-r--r-- | packages/frontend/test/init.ts | 5 | ||||
| -rw-r--r-- | packages/frontend/test/note.test.ts | 5 | ||||
| -rw-r--r-- | packages/frontend/test/url-preview.test.ts | 5 |
4 files changed, 20 insertions, 0 deletions
diff --git a/packages/frontend/test/home.test.ts b/packages/frontend/test/home.test.ts index f3eddcd371..53bdd6a5c2 100644 --- a/packages/frontend/test/home.test.ts +++ b/packages/frontend/test/home.test.ts @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: syuilo and other misskey contributors + * SPDX-License-Identifier: AGPL-3.0-only + */ + import { describe, test, assert, afterEach } from 'vitest'; import { render, cleanup, type RenderResult } from '@testing-library/vue'; import './init'; diff --git a/packages/frontend/test/init.ts b/packages/frontend/test/init.ts index 295107e143..80967034f2 100644 --- a/packages/frontend/test/init.ts +++ b/packages/frontend/test/init.ts @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: syuilo and other misskey contributors + * SPDX-License-Identifier: AGPL-3.0-only + */ + import { vi } from 'vitest'; import createFetchMock from 'vitest-fetch-mock'; diff --git a/packages/frontend/test/note.test.ts b/packages/frontend/test/note.test.ts index bdb1a8281a..5d75623a49 100644 --- a/packages/frontend/test/note.test.ts +++ b/packages/frontend/test/note.test.ts @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: syuilo and other misskey contributors + * SPDX-License-Identifier: AGPL-3.0-only + */ + import { describe, test, assert, afterEach } from 'vitest'; import { render, cleanup, type RenderResult } from '@testing-library/vue'; import './init'; diff --git a/packages/frontend/test/url-preview.test.ts b/packages/frontend/test/url-preview.test.ts index 4cb37e6584..1d43a628f2 100644 --- a/packages/frontend/test/url-preview.test.ts +++ b/packages/frontend/test/url-preview.test.ts @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: syuilo and other misskey contributors + * SPDX-License-Identifier: AGPL-3.0-only + */ + import { describe, test, assert, afterEach } from 'vitest'; import { render, cleanup, type RenderResult } from '@testing-library/vue'; import './init'; |