finished renaming
This commit is contained in:
parent
4d695338e0
commit
b8deafd11c
4 changed files with 6 additions and 11 deletions
2
cli.mjs
2
cli.mjs
|
@ -8,7 +8,7 @@ import { CLI, printError } from './lib/cli.mjs'
|
||||||
|
|
||||||
e.begin()
|
e.begin()
|
||||||
|
|
||||||
const cli = new CLI(c)
|
const cli = new CLI(e)
|
||||||
cli.parseOptions(args)
|
cli.parseOptions(args)
|
||||||
|
|
||||||
if (cli.errored) {
|
if (cli.errored) {
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
import path from 'path'
|
import path from 'path'
|
||||||
import fs from 'fs'
|
import fs from 'fs'
|
||||||
|
|
||||||
export function CLI(c) {
|
export function CLI(e) {
|
||||||
this.c = c
|
this.e = e
|
||||||
this.reporter = 'list'
|
this.reporter = 'list'
|
||||||
this.targets = ['test/**']
|
this.targets = ['test/**']
|
||||||
this.files = []
|
this.files = []
|
||||||
|
@ -59,9 +59,9 @@ CLI.prototype.loadFiles = async function() {
|
||||||
|
|
||||||
for (let i = 0; i < this.files.length; i++) {
|
for (let i = 0; i < this.files.length; i++) {
|
||||||
if (this.files[i].endsWith('.mjs') || this.files[i].endsWith('.js')) {
|
if (this.files[i].endsWith('.mjs') || this.files[i].endsWith('.js')) {
|
||||||
this.c.setFilename(this.files[i])
|
this.e.setFilename(this.files[i])
|
||||||
await import('file:///' + path.join(cwd, this.files[i]))
|
await import('file:///' + path.join(cwd, this.files[i]))
|
||||||
this.c.resetFilename()
|
this.e.resetFilename()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
5
package-lock.json
generated
5
package-lock.json
generated
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"name": "casette",
|
|
||||||
"version": "0.9.2",
|
|
||||||
"lockfileVersion": 1
|
|
||||||
}
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "eltro",
|
"name": "eltro",
|
||||||
"version": "0.9.2",
|
"version": "0.8.9",
|
||||||
"description": "Eltro is a small no-dependancy test framework for node",
|
"description": "Eltro is a small no-dependancy test framework for node",
|
||||||
"main": "index.mjs",
|
"main": "index.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Loading…
Reference in a new issue