Files
release-changelog-builder-a…/__tests__/main.test.ts
T
2020-10-16 15:56:40 +02:00

54 lines
1.3 KiB
TypeScript

import {wait} from '../src/wait'
import * as process from 'process'
import * as cp from 'child_process'
import * as path from 'path'
import { ReleaseNotes } from '../src/releaseNotes';
import { readConfiguration } from '../src/utils';
import { createCommandManager } from '../src/git-helper';
import * as core from '@actions/core';
import { Tags } from '../src/tags';
// shows how the runner will run a javascript action with env / stdout protocol
/*
test('test runs', () => {
jest.setTimeout(180000);
process.env['INPUT_CONFIGURATION'] = 'configuration.json'
const ip = path.join(__dirname, '..', 'lib', 'main.js')
const options: cp.ExecSyncOptions = {
env: process.env
}
console.log(cp.execSync(`node ${ip}`, options).toString())
})
*/
it("Should be true", async () => {
jest.setTimeout(180000);
const configuration = readConfiguration('configuration.json')
const releaseNotes = new ReleaseNotes({
owner: "mikepenz",
repo: "MaterialDrawer",
fromTag: null,
toTag: "v8.1.6",
configuration: configuration
})
const changeLog = await releaseNotes.pull()
console.log(changeLog)
expect(changeLog).toStrictEqual(`
<details>
<summary>Uncategorized</summary>
- Improve GitHub Actions
- PR: #2655
- Update dependencies
- PR: #2656
- [RELEASE] v8.1.6
- PR: #2657
</details>`)
})