Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nberlette committed Dec 23, 2021
1 parent 26b71c5 commit ae037a0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"name": "harx",
"name": "@nberlette/harx",
"version": "1.0.0-beta.4",
"publishConfig": {
"public": true
},
"private": false,
"description": "Simple CLI tool to extract HAR data.",
"keywords": [
"http",
Expand Down
7 changes: 3 additions & 4 deletions test/har-extractor-test.ts → test/harx.test.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import { describe } from "mocha";
import * as path from "path";
import { extract } from "../src/har-extractor";
import { extract } from "harx";
import * as fs from "fs";
import * as assert from "assert";

const glob = require("glob");
const del = require("del");
import * as glob from "glob";
import * as del from "del";
const outputDir = path.join(__dirname, "output");
describe("har-extractor", () => {
afterEach(() => {
Expand Down

0 comments on commit ae037a0

Please sign in to comment.