Initial commit

This commit is contained in:
Steve Kinney
2024-09-13 15:59:51 -06:00
commit a028678660
36 changed files with 5932 additions and 0 deletions

View File

@@ -0,0 +1 @@
# Basic Math

View File

@@ -0,0 +1,26 @@
{
"name": "basic-math",
"version": "1.0.0",
"description": "Let's talk about adding and subtracting numbers.",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "vitest --ui",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevekinney/testing-javascript.git"
},
"author": "Steve Kinney <hello@stevekinney.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevekinney/testing-javascript/issues"
},
"homepage": "https://github.com/stevekinney/testing-javascript#readme",
"devDependencies": {
"@vitest/ui": "^2.1.1",
"vite": "^5.4.5",
"vitest": "^2.1.1"
}
}

View File

View File

@@ -0,0 +1 @@
import { describe, it, expect } from 'vitest';

View File

@@ -0,0 +1,5 @@
export default {
test: {
environment: 'node',
},
};