switch to using ava

This commit is contained in:
Robert Brignull 2020-05-04 18:28:01 +01:00
parent 0347b72305
commit 572c8bbc0c
10 changed files with 304 additions and 48 deletions

View file

@ -1,3 +1,4 @@
import test from 'ava';
import * as fs from "fs";
import * as path from "path";
@ -5,7 +6,7 @@ import * as configUtils from "./config-utils";
import * as externalQueries from "./external-queries";
import * as util from "./util";
test("checkoutExternalQueries", async () => {
test("checkoutExternalQueries", async t => {
let config = new configUtils.Config();
config.externalQueries = [
new configUtils.ExternalQuery("github/codeql-go", "df4c6869212341b601005567381944ed90906b6b"),
@ -16,6 +17,6 @@ test("checkoutExternalQueries", async () => {
await externalQueries.checkoutExternalQueries(config);
// COPYRIGHT file existed in df4c6869212341b601005567381944ed90906b6b but not in master
expect(fs.existsSync(path.join(tmpDir, "github", "codeql-go", "COPYRIGHT"))).toBeTruthy();
t.true(fs.existsSync(path.join(tmpDir, "github", "codeql-go", "COPYRIGHT")));
});
});