Deployed the page to Github Pages.
This commit is contained in:
parent
1d79754e93
commit
2c89899458
62797 changed files with 6551425 additions and 15279 deletions
11
node_modules/jasmine-spec-reporter/examples/node/spec/helpers/reporter.js
generated
vendored
Normal file
11
node_modules/jasmine-spec-reporter/examples/node/spec/helpers/reporter.js
generated
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
const SpecReporter = require('jasmine-spec-reporter').SpecReporter;
|
||||
|
||||
jasmine.getEnv().clearReporters(); // remove default reporter logs
|
||||
jasmine.getEnv().addReporter(new SpecReporter({ // add jasmine-spec-reporter
|
||||
spec: {
|
||||
displayPending: true,
|
||||
},
|
||||
summary: {
|
||||
displayDuration: false,
|
||||
}
|
||||
}));
|
56
node_modules/jasmine-spec-reporter/examples/node/spec/node-spec.js
generated
vendored
Normal file
56
node_modules/jasmine-spec-reporter/examples/node/spec/node-spec.js
generated
vendored
Normal file
|
@ -0,0 +1,56 @@
|
|||
describe('first suite', () => {
|
||||
it('should be ok', () => {
|
||||
expect(true).toBe(true);
|
||||
});
|
||||
|
||||
it('should be pending', () => {
|
||||
pending('will work soon');
|
||||
expect(true).toBe(true);
|
||||
});
|
||||
|
||||
it('should failed', () => {
|
||||
expect(true).toBe(false);
|
||||
});
|
||||
|
||||
it('should be ok', () => {
|
||||
expect(true).toBe(true);
|
||||
});
|
||||
});
|
||||
|
||||
describe('second suite', () => {
|
||||
xit('should be pending', () => {
|
||||
expect(true).toBe(false);
|
||||
});
|
||||
|
||||
it('should be ok', () => {
|
||||
expect(true).toBe(true);
|
||||
});
|
||||
|
||||
describe('first child suite', () => {
|
||||
describe('first grandchild suite', () => {
|
||||
it('should failed', () => {
|
||||
expect(true).toBe(false);
|
||||
expect(true).toBe(false);
|
||||
expect(true).toBe(true);
|
||||
});
|
||||
|
||||
it('should failed', () => {
|
||||
expect(true).toBe(false);
|
||||
});
|
||||
|
||||
it('should be ok', () => {
|
||||
expect(true).toBe(true);
|
||||
});
|
||||
});
|
||||
|
||||
describe('second grandchild suite', () => {
|
||||
it('should failed', () => {
|
||||
expect(true).toBe(false);
|
||||
});
|
||||
|
||||
it('should be ok', () => {
|
||||
expect(true).toBe(true);
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
11
node_modules/jasmine-spec-reporter/examples/node/spec/support/jasmine.json
generated
vendored
Normal file
11
node_modules/jasmine-spec-reporter/examples/node/spec/support/jasmine.json
generated
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"spec_dir": "spec",
|
||||
"spec_files": [
|
||||
"**/*[sS]pec.js"
|
||||
],
|
||||
"helpers": [
|
||||
"helpers/**/*.js"
|
||||
],
|
||||
"stopSpecOnExpectationFailure": false,
|
||||
"random": false
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue