• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

naver / billboard.js / 11884196428

18 Nov 2024 01:38AM UTC coverage: 94.256%. Remained the same
11884196428

push

github

web-flow
test(point): update test for point.sensitivity (#3916)

Co-authored-by: netil <netil@AD02298065.local>

6270 of 6909 branches covered (90.75%)

Branch coverage included in aggregate %.

1 of 1 new or added line in 1 file covered. (100.0%)

7810 of 8029 relevant lines covered (97.27%)

26301.38 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/Plugin/Plugin.ts
1
/**
2
 * Copyright (c) 2017 ~ present NAVER Corp.
3
 * billboard.js project is licensed under the MIT license
4
 */
5
/**
6
 * Base class to generate billboard.js plugin
7
 * @class Plugin
8
 */
9
/**
10
 * Version info string for plugin
11
 * @name version
12
 * @static
13
 * @memberof Plugin
14
 * @type {string}
15
 * @example
16
 *   bb.plugin.stanford.version;  // ex) 1.9.0
17
 */
18
export default class Plugin {
19
        public $$;
20
        public options;
21
        static version = "__VERSION__";
×
22

23
        /**
24
         * Constructor
25
         * @param {Any} options config option object
26
         * @private
27
         */
28
        constructor(options = {}) {
×
29
                this.options = options;
×
30
        }
31

32
        /**
33
         * Lifecycle hook for 'beforeInit' phase.
34
         * @private
35
         */
36
        $beforeInit() {}
37

38
        /**
39
         * Lifecycle hook for 'init' phase.
40
         * @private
41
         */
42
        $init() {}
43

44
        /**
45
         * Lifecycle hook for 'afterInit' phase.
46
         * @private
47
         */
48
        $afterInit() {}
49

50
        /**
51
         * Lifecycle hook for 'redraw' phase.
52
         * @private
53
         */
54
        $redraw() {}
55

56
        /**
57
         * Lifecycle hook for 'willDestroy' phase.
58
         * @private
59
         */
60
        $willDestroy() {
61
                Object.keys(this).forEach(key => {
×
62
                        this[key] = null;
×
63
                        delete this[key];
×
64
                });
65
        }
66
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc