Gathering detailed insights and metrics for bigtest-sample
Gathering detailed insights and metrics for bigtest-sample
Gathering detailed insights and metrics for bigtest-sample
Gathering detailed insights and metrics for bigtest-sample
Ensure your React/Vue/Ember/anything app works perfectly across browsers.
npm install bigtest-sample
Typescript
Module System
TypeScript (77.7%)
CSS (14.37%)
JavaScript (5.5%)
MDX (1.81%)
HTML (0.63%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
101 Stars
3,379 Commits
14 Forks
13 Watchers
179 Branches
137 Contributors
Updated on Jan 19, 2025
Latest Version
0.0.14
Package Id
bigtest-sample@0.0.14
Unpacked Size
1.29 MB
Size
407.06 kB
File Count
44
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
A Suite of JavaScript libraries and framework extensions to help you
answer the question:
Does my application work in real life?
BigTest is an innovative new test runner. It is built to test any web application in any browser and do it with great performance and test stability.
BigTest is under heavy development, we are currently at an alpha stage of development, and adventurous users can start using BigTest today. Want to help us get to Beta? Check out the beta milestone and help us cross the finish line!
The surest way to know if an application is going to work is to actually run it. BigTest is built to work with any web application out of the box and requires zero integration inside your application code. From frontend applications to server side rendered, React, Angular, Vue, Ember and so on… If you can build it, you can test it.
Does your appication run in a browser? Then if a test is going to measure whether it works or not, it also needs to run in a real browser that a real user might use. BigTest is built from the ground up to work with any browser, including mobile browsers.
Testing big is hard because there can be hundreds if not thousands of things happening concurrently inside your application, including user interactions. We have taken great care to make sure BigTest tests do not suffer from the flakiness issues often associated with big tests. Read about how we eliminate flakiness on our blog.
BigTest is currently alpha level software and we are still building documentation, so be prepared for some roughness around the edges, but if you already want to give it a go, here is how you can get going:
Install bigtest in your application:
yarn add -D bigtest
Run the init command to set up your application:
yarn bigtest init
Add a test file in test/my-test.test.js
:
1import { test, visit, Heading } from 'bigtest'; 2 3export default test('My Test') 4 .step(visit('/')) 5 .step(Heading("My Application").exists());
Start the BigTest server:
yarn bigtest server
And run your tests:
yarn bigtest test
git clone git@github.com:thefrontside/bigtest.git
yarn
To build every package into a publishable state for npm, run the following command at the root of the repo:
1yarn prepack
All of the packages which have a compiled output use typescript project references for faster build times and a better project structure.
Any individual package can be built with the prepack
script, eg. for @bigtest/server
1yarn workspace @bigtest/server prepack
The prepack
command will build the server package and any dependant packages that are set in the "references"
field of the relevant tsconfig.json
.
The following scripts can work on all packages when executed at the root level:
yarn prepack:tsc
to compile all typescriptyarn watch
to compile all typescript and instruct tsc
to watch for file modifications.yarn clean:tsc
to delete all the dist
directories and *.tsbuildinfo
files and ensure that a clean build is being performed.yarn clean:tsbuild
to delete only the *.tsbuildinfo
files.yarn
to ensure that all dependencies are installedyarn prepack
to build all packagesyarn test
to run automated testsyarn
to ensure that all dependencies are installedyarn prepack
to build all packagesyarn lint
to run lintersNo vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
Found 9/10 approved changesets -- score normalized to 9
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
license file not detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
134 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More