mirror of
https://github.com/trympet/nextcloud-artifacts-action.git
synced 2025-04-24 20:16:08 +02:00
10 lines
288 B
TypeScript
10 lines
288 B
TypeScript
import { NextcloudArtifact } from '../src/nextcloud/NextcloudArtifact'
|
|
import { InputsDouble } from './doubles/InputsDouble'
|
|
|
|
describe('integration tests', () => {
|
|
it('works', async () => {
|
|
const artifact = new NextcloudArtifact(new InputsDouble())
|
|
await artifact.run()
|
|
})
|
|
})
|