-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { test, expect } from '@playwright/test'; | ||
|
||
test.describe('Tool - Dockerfile linter', () => { | ||
test.beforeEach(async ({ page }) => { | ||
await page.goto('/dockerfile-linter'); | ||
}); | ||
|
||
test('Has correct title', async ({ page }) => { | ||
await expect(page).toHaveTitle('Dockerfile linter - IT Tools'); | ||
}); | ||
|
||
test('', async ({ page }) => { | ||
|
||
}); | ||
}); | ||
6 changes: 6 additions & 0 deletions
6
src/tools/dockerfile-linter/dockerfile-linter.service.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { expect, describe, it } from 'vitest'; | ||
Check failure on line 1 in src/tools/dockerfile-linter/dockerfile-linter.service.test.ts
|
||
// import { } from './dockerfile-linter.service'; | ||
// | ||
// describe('dockerfile-linter', () => { | ||
// | ||
// }) | ||
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<template> | ||
<div> | ||
Lorem ipsum | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
Check failure on line 7 in src/tools/dockerfile-linter/dockerfile-linter.vue
|
||
</script> | ||
|
||
<style lang="less" scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { ArrowsShuffle } from '@vicons/tabler'; | ||
import { defineTool } from '../tool'; | ||
|
||
export const tool = defineTool({ | ||
name: 'Dockerfile Linter', | ||
path: '/dockerfile-linter', | ||
description: '', | ||
keywords: ['dockerfile', 'docker', 'linter'], | ||
component: () => import('./dockerfile-linter.vue'), | ||
icon: ArrowsShuffle, | ||
createdAt: new Date('2025-01-01'), | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters